diff options
author | Derick Rethans <derick@php.net> | 2011-06-24 11:19:34 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2011-06-24 11:19:34 +0000 |
commit | 09607226d4d418421119736f8137189efc4602ff (patch) | |
tree | f2819ab66ecf0ffd74ff7b7a51a6469c8d16f5d0 /main/php.h | |
parent | e9ce400f8bb82eb76946a908a987cf44b2c33843 (diff) | |
download | php-git-09607226d4d418421119736f8137189efc4602ff.tar.gz |
- Added a new PHPAPI function to return module_initialized:
php_get_module_initialized().
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/php.h b/main/php.h index 278d6390fb..e108c25413 100644 --- a/main/php.h +++ b/main/php.h @@ -285,6 +285,7 @@ void phperror(char *error); PHPAPI int php_write(void *buf, uint size TSRMLS_DC); PHPAPI int php_printf(const char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 1, 2); +PHPAPI int php_get_module_initialized(void); PHPAPI void php_log_err(char *log_message TSRMLS_DC); int Debug(char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 1, 2); int cfgparse(void); |