-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile.h
More file actions
391 lines (338 loc) · 15.5 KB
/
file.h
File metadata and controls
391 lines (338 loc) · 15.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
/*
* @author Mário Soares
* @contributors Jefferson González
*
* @license
* This file is part of wxPHP check the LICENSE file for information.
*
* @note
* This file was auto-generated by the wxPHP source maker
*/
#ifndef WXPHP_FILE_H_GUARD
#define WXPHP_FILE_H_GUARD
#include "references.h"
ZEND_BEGIN_ARG_INFO_EX(wxphp_file_get_args, 0, 0, 1)
ZEND_ARG_INFO(0, name)
ZEND_END_ARG_INFO()
extern int le_wxFFile;
extern zend_class_entry *php_wxFFile_entry;
void php_wxFFile_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxFFile_php: public wxFFile{
public:
wxFFile_php(const wxString& filename, const wxString& mode="r"):wxFFile(filename, mode){}
wxFFile_php():wxFFile(){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxFFile_functions[] = {
PHP_ME(php_wxFFile, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(php_wxFFile, Write, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFFile, Tell, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFFile, SeekEnd, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFFile, Seek, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFFile, Read, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFFile, Open, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFFile, Length, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFFile, IsOpened, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFFile, GetKind, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFFile, Flush, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFFile, Error, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFFile, Eof, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFFile, Detach, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFFile, Close, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
extern int le_wxFile;
extern zend_class_entry *php_wxFile_entry;
void php_wxFile_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxFile_php: public wxFile{
public:
wxFile_php():wxFile(){}
wxFile_php(const wxString& filename, wxFile::OpenMode mode=wxFile::read):wxFile(filename, mode){}
wxFile_php(int fd):wxFile(fd){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxFile_functions[] = {
PHP_ME(php_wxFile, Seek, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, SeekEnd, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, Tell, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, Write, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, fd, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(php_wxFile, Open, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, Length, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, IsOpened, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, GetLastError, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, GetKind, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, Flush, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, Exists, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, Eof, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, Detach, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, Create, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, Close, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, ClearLastError, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, Attach, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFile, Access, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
extern int le_wxPathList;
extern zend_class_entry *php_wxPathList_entry;
void php_wxPathList_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxPathList_php: public wxPathList{
public:
wxPathList_php():wxPathList(){}
wxPathList_php(const wxArrayString& arr):wxPathList(arr){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxPathList_functions[] = {
PHP_ME(php_wxPathList, Add, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPathList, AddEnvList, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPathList, EnsureFileAccessible, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPathList, FindAbsoluteValidPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPathList, FindValidPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxPathList, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
#endif
extern int le_wxFileName;
extern zend_class_entry *php_wxFileName_entry;
void php_wxFileName_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxFileName_php: public wxFileName{
public:
wxFileName_php(const wxFileName& filename):wxFileName(filename){}
wxFileName_php():wxFileName(){}
wxFileName_php(const wxString& fullpath, wxPathFormat format=wxPATH_NATIVE):wxFileName(fullpath, format){}
wxFileName_php(const wxString& path, const wxString& name, wxPathFormat format=wxPATH_NATIVE):wxFileName(path, name, format){}
wxFileName_php(const wxString& path, const wxString& name, const wxString& ext, wxPathFormat format=wxPATH_NATIVE):wxFileName(path, name, ext, format){}
wxFileName_php(const wxString& volume, const wxString& path, const wxString& name, const wxString& ext, wxPathFormat format=wxPATH_NATIVE):wxFileName(volume, path, name, ext, format){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxFileName_functions[] = {
PHP_ME(php_wxFileName, AppendDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, Assign, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(php_wxFileName, Touch, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, StripExtension, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, SplitVolume, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, SplitPath, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, SetVolume, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, SetTimes, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, SetPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, SetName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, SetFullName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, SetExt, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, SetEmptyExt, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, SetCwd, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, SameAs, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, Rmdir, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, ReplaceHomeDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, ReplaceEnvVariable, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, RemoveLastDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, RemoveDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, PrependDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, AssignCwd, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, AssignDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, AssignHomeDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, AssignTempFileName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, Clear, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, ClearExt, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, CreateTempFileName, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, DirExists, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, DirName, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, FileExists, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, FileName, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetCwd, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetDirCount, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetDirs, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetExt, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetForbiddenChars, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetFormat, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetFullName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetFullPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetHomeDir, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetHumanReadableSize, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetLongPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetModificationTime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetPathSeparators, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetPathTerminators, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetPathWithSep, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetShortPath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetTempDir, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetVolumeSeparator, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, GetVolume, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, HasExt, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, HasName, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, HasVolume, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, InsertDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, IsAbsolute, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, IsCaseSensitive, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, IsDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, IsDirReadable, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, IsDirWritable, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, IsFileExecutable, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, IsFileReadable, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, IsFileWritable, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, IsMSWUniqueVolumeNamePath, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, IsOk, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, IsRelative, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, MakeAbsolute, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, MakeRelativeTo, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, Mkdir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileName, Normalize, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
extern int le_wxFSFile;
extern zend_class_entry *php_wxFSFile_entry;
void php_wxFSFile_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxFSFile_php: public wxFSFile{
public:
wxFSFile_php(wxInputStream* stream, const wxString& location, const wxString& mimetype, const wxString& anchor, wxDateTime modif):wxFSFile(stream, location, mimetype, anchor, modif){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxFSFile_functions[] = {
PHP_ME(php_wxObject, UnShare, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, UnRef, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, IsSameAs, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, Ref, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, GetClassInfo, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, IsKindOf, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFSFile, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_ME(php_wxFSFile, GetStream, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFSFile, GetModificationTime, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFSFile, GetMimeType, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFSFile, GetLocation, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFSFile, GetAnchor, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFSFile, DetachStream, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
extern int le_wxFileSystemWatcher;
extern zend_class_entry *php_wxFileSystemWatcher_entry;
void php_wxFileSystemWatcher_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxFileSystemWatcher_php: public wxFileSystemWatcher{
public:
wxFileSystemWatcher_php():wxFileSystemWatcher(){}
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxFileSystemWatcher_functions[] = {
PHP_ME(php_wxObject, UnShare, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, UnRef, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, IsSameAs, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, Ref, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, GetClassInfo, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxObject, IsKindOf, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, Connect, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, AddFilter, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, AddPendingEvent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, DeletePendingEvents, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, GetEvtHandlerEnabled, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, GetNextHandler, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, GetPreviousHandler, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, IsUnlinked, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, ProcessEvent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, ProcessEventLocally, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, ProcessPendingEvents, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, QueueEvent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, RemoveFilter, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, SafelyProcessEvent, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, SetEvtHandlerEnabled, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, SetNextHandler, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, SetPreviousHandler, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxEvtHandler, Unlink, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileSystemWatcher, Add, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileSystemWatcher, AddTree, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileSystemWatcher, GetWatchedPathsCount, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileSystemWatcher, Remove, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileSystemWatcher, RemoveAll, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileSystemWatcher, RemoveTree, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileSystemWatcher, SetOwner, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxFileSystemWatcher, __construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_CTOR)
PHP_FE_END
};
#endif
extern int le_wxStandardPaths;
extern zend_class_entry *php_wxStandardPaths_entry;
void php_wxStandardPaths_destruction_handler(zend_rsrc_list_entry * TSRMLS_DC);
class wxStandardPaths_php: public wxStandardPaths{
public:
void InitProperties(){
}
zval *evnArray;
void onEvent(wxEvent& evnt);
void ***tsrm_ls;
zval* phpObj;
void** properties;
wxPHPObjectReferences references;
};
#ifdef WXPHP_INCLUDE_METHOD_TABLES
static zend_function_entry php_wxStandardPaths_functions[] = {
PHP_ME(php_wxStandardPaths, Get, NULL, ZEND_ACC_STATIC|ZEND_ACC_PUBLIC)
PHP_ME(php_wxStandardPaths, GetAppDocumentsDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStandardPaths, GetConfigDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStandardPaths, GetDataDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStandardPaths, GetDocumentsDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStandardPaths, GetExecutablePath, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStandardPaths, GetLocalDataDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStandardPaths, GetPluginsDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStandardPaths, GetResourcesDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStandardPaths, GetTempDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStandardPaths, GetUserConfigDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStandardPaths, GetUserDataDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStandardPaths, GetUserLocalDataDir, NULL, ZEND_ACC_PUBLIC)
PHP_ME(php_wxStandardPaths, UseAppInfo, NULL, ZEND_ACC_PUBLIC)
PHP_FE_END
};
#endif
#endif //WXPHP_FILE_H_GUARD