diff options
Diffstat (limited to 'ext/com/php3_COM.h')
-rw-r--r-- | ext/com/php3_COM.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ext/com/php3_COM.h b/ext/com/php3_COM.h new file mode 100644 index 0000000000..ed9cc4f526 --- /dev/null +++ b/ext/com/php3_COM.h @@ -0,0 +1,22 @@ +#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); +extern void php3_COM_load(INTERNAL_FUNCTION_PARAMETERS); +extern void php3_COM_invoke(INTERNAL_FUNCTION_PARAMETERS); + +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 */ + +#endif /* _PHP3_COM_H */ |