mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Cleanup unused module globals
This commit is contained in:
parent
c48f5fe841
commit
5aa1176238
10 changed files with 1 additions and 104 deletions
|
@ -35,20 +35,4 @@ PHP_RINIT_FUNCTION(pdo_sqlite);
|
|||
PHP_RSHUTDOWN_FUNCTION(pdo_sqlite);
|
||||
PHP_MINFO_FUNCTION(pdo_sqlite);
|
||||
|
||||
/*
|
||||
Declare any global variables you may need between the BEGIN
|
||||
and END macros here:
|
||||
|
||||
ZEND_BEGIN_MODULE_GLOBALS(pdo_sqlite)
|
||||
long global_value;
|
||||
char *global_string;
|
||||
ZEND_END_MODULE_GLOBALS(pdo_sqlite)
|
||||
*/
|
||||
|
||||
#ifdef ZTS
|
||||
#define PDO_SQLITE_G(v) TSRMG(pdo_sqlite_globals_id, zend_pdo_sqlite_globals *, v)
|
||||
#else
|
||||
#define PDO_SQLITE_G(v) (pdo_sqlite_globals.v)
|
||||
#endif
|
||||
|
||||
#endif /* PHP_PDO_SQLITE_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue