1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

*** empty log message ***

This commit is contained in:
Zeev Suraski
1999-04-09 19:16:46 +00:00
parent 763061bbea
commit 011813cce8

31
main/php_globals.h Normal file
View File

@@ -0,0 +1,31 @@
#ifndef _PHP_GLOBALS_H
#define _PHP_GLOBALS_H
typedef struct _php_core_globals php_core_globals;
#ifdef ZTS
# define PLS_D php_core_globals *core_globals
# define PLS_DC , PLS_D
# define PLS_C core_globals
# define PLS_CC , PLS_C
# define PG(v) (core_globals->v)
# define PLS_FETCH() php_core_globals *core_globals = ts_resource(core_globals_id)
#else
# define PLS_D
# define PLS_DC
# define PLS_C
# define PLS_CC
# define PG(v) (core_globals.v)
# define PLS_FETCH()
extern ZEND_API php_core_globals core_globals;
#endif
struct _php_core_globals {
long magic_quotes_gpc;
long magic_quotes_runtime;
long magic_quotes_sybase;
};
#endif /* _PHP_GLOBALS_H */