12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #ifndef PHP_WIN32_GLOBALS_H
- #define PHP_WIN32_GLOBALS_H
- #include "win32/sendmail.h"
- typedef struct _php_win32_core_globals php_win32_core_globals;
- #ifdef ZTS
- # define PW32G(v) ZEND_TSRMG(php_win32_core_globals_id, php_win32_core_globals*, v)
- extern PHPAPI int php_win32_core_globals_id;
- #else
- # define PW32G(v) (the_php_win32_core_globals.v)
- extern PHPAPI struct _php_win32_core_globals the_php_win32_core_globals;
- #endif
- struct _php_win32_core_globals {
-
- char *log_header;
- HANDLE log_source;
- HKEY registry_key;
- HANDLE registry_event;
- HashTable *registry_directories;
- char mail_buffer[MAIL_BUFFER_SIZE];
- SOCKET mail_socket;
- char mail_host[HOST_NAME_LEN];
- char mail_local_host[HOST_NAME_LEN];
- };
- void php_win32_core_globals_ctor(void *vg);
- void php_win32_core_globals_dtor(void *vg);
- PHP_RSHUTDOWN_FUNCTION(win32_core_globals);
- #endif
|