summaryrefslogtreecommitdiff
path: root/ext/com/php3_COM.h
blob: a94c711559a95fd333e6b8eb70a5f4d90ee54232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _PHP3_COM_H
#define _PHP3_COM_H

#if WIN32|WINNT

extern int php3_minit_COM(INIT_FUNC_ARGS);
extern int php3_mshutdown_COM(SHUTDOWN_FUNC_ARGS);
PHP_FUNCTION(COM_load);
PHP_FUNCTION(COM_invoke);

PHP_FUNCTION(com_propget);
PHP_FUNCTION(com_propput);
extern php3_module_entry COM_module_entry;
#define COM_module_ptr &COM_module_entry

#else

#define COM_module_ptr NULL

#endif  /* Win32|WINNT */

#define phpext_COM_ptr COM_module_ptr

#endif  /* _PHP3_COM_H */