php-src/win32/php_win32_globals.h

56 lines
2.0 KiB
C
Raw Normal View History

2004-07-29 02:59:44 +00:00
/*
+----------------------------------------------------------------------+
2014-09-19 16:33:14 +00:00
| PHP Version 7 |
2004-07-29 02:59:44 +00:00
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
2004-07-29 02:59:44 +00:00
+----------------------------------------------------------------------+
2006-01-01 12:51:34 +00:00
| This source file is subject to version 3.01 of the PHP license, |
2004-07-29 02:59:44 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
2006-01-01 12:51:34 +00:00
| http://www.php.net/license/3_01.txt |
2004-07-29 02:59:44 +00:00
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Wez Furlong <wez@php.net> |
+----------------------------------------------------------------------+
*/
#ifndef PHP_WIN32_GLOBALS_H
#define PHP_WIN32_GLOBALS_H
/* misc globals for thread-safety under win32 */
2015-03-03 19:42:28 +00:00
#include "win32/sendmail.h"
2004-07-29 02:59:44 +00:00
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)
2014-09-25 16:48:27 +00:00
extern PHPAPI int php_win32_core_globals_id;
2004-07-29 02:59:44 +00:00
#else
# define PW32G(v) (the_php_win32_core_globals.v)
extern PHPAPI struct _php_win32_core_globals the_php_win32_core_globals;
2004-07-29 02:59:44 +00:00
#endif
struct _php_win32_core_globals {
/* syslog */
char *log_header;
HANDLE log_source;
HKEY registry_key;
HANDLE registry_event;
HashTable *registry_directories;
2015-03-03 19:42:28 +00:00
char mail_buffer[MAIL_BUFFER_SIZE];
SOCKET mail_socket;
char mail_host[HOST_NAME_LEN];
char mail_local_host[HOST_NAME_LEN];
2004-07-29 02:59:44 +00:00
};
2014-12-13 22:06:14 +00:00
void php_win32_core_globals_ctor(void *vg);
void php_win32_core_globals_dtor(void *vg);
2004-07-29 02:59:44 +00:00
PHP_RSHUTDOWN_FUNCTION(win32_core_globals);
#endif