1
0
mirror of https://github.com/php/php-src.git synced 2026-04-09 00:53:30 +02:00

Unresolved externs

This commit is contained in:
Sam Ruby
2000-03-06 10:46:40 +00:00
parent ad5b022ed1
commit fc173b6ace
2 changed files with 5 additions and 0 deletions

View File

@@ -466,12 +466,14 @@ void zend_deactivate(CLS_D ELS_DC)
}
BEGIN_EXTERN_C()
ZEND_API void zend_message_dispatcher(long message, void *data)
{
if (zend_message_dispatcher_p) {
zend_message_dispatcher_p(message, data);
}
}
END_EXTERN_C()
ZEND_API int zend_get_ini_entry(char *name, uint name_length, zval *contents)

View File

@@ -298,7 +298,10 @@ END_EXTERN_C()
#define HANDLE_BLOCK_INTERRUPTIONS() if (zend_block_interruptions) { zend_block_interruptions(); }
#define HANDLE_UNBLOCK_INTERRUPTIONS() if (zend_unblock_interruptions) { zend_unblock_interruptions(); }
BEGIN_EXTERN_C()
ZEND_API void zend_message_dispatcher(long message, void *data);
END_EXTERN_C()
ZEND_API int zend_get_ini_entry(char *name, uint name_length, zval *contents);