summaryrefslogtreecommitdiff
path: root/main/php.h
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2011-06-24 11:19:34 +0000
committerDerick Rethans <derick@php.net>2011-06-24 11:19:34 +0000
commit29565d1a4cad22d6bc3cd5ffc12174dd26969974 (patch)
tree42995b0ed3bb53a1d38b39f113c475b80598e5a8 /main/php.h
parentbcf7e60d4cb7b64e6df7179f91a198ddbd2fb2ab (diff)
downloadphp-git-29565d1a4cad22d6bc3cd5ffc12174dd26969974.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.h1
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);