summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>1999-08-17 19:25:22 +0000
committerAndi Gutmans <andi@php.net>1999-08-17 19:25:22 +0000
commitacd6114fa7e511ef1e02e7f58512291ee5247d16 (patch)
tree63633f530f2cf1a34be6f536e4e05bdf6be8f42e /Zend
parent71e3f6fde3979a2fd4c051ba878e5e3e5a8f21f5 (diff)
downloadphp-git-acd6114fa7e511ef1e02e7f58512291ee5247d16.tar.gz
- Add some ZENDAPI's
Diffstat (limited to 'Zend')
-rw-r--r--Zend/zend.c8
-rw-r--r--Zend/zend.h8
2 files changed, 8 insertions, 8 deletions
diff --git a/Zend/zend.c b/Zend/zend.c
index 9ee3630f89..568e8ff78b 100644
--- a/Zend/zend.c
+++ b/Zend/zend.c
@@ -42,10 +42,10 @@ ZEND_API zend_class_entry zend_standard_class_def;
ZEND_API int (*zend_printf)(const char *format, ...);
ZEND_API int (*zend_write)(const char *str, uint str_length);
ZEND_API void (*zend_error)(int type, const char *format, ...);
-void (*zend_message_dispatcher)(long message, void *data);
-FILE *(*zend_fopen)(const char *filename);
-void (*zend_block_interruptions)();
-void (*zend_unblock_interruptions)();
+ZEND_API void (*zend_message_dispatcher)(long message, void *data);
+ZEND_API FILE *(*zend_fopen)(const char *filename);
+ZEND_API void (*zend_block_interruptions)();
+ZEND_API void (*zend_unblock_interruptions)();
ZEND_API int (*zend_get_ini_entry)(char *name, uint name_length, zval *contents);
#ifdef ZTS
diff --git a/Zend/zend.h b/Zend/zend.h
index d6ed0ed387..b5dbe957f2 100644
--- a/Zend/zend.h
+++ b/Zend/zend.h
@@ -207,10 +207,10 @@ BEGIN_EXTERN_C()
extern ZEND_API int (*zend_printf)(const char *format, ...);
extern ZEND_API int (*zend_write)(const char *str, uint str_length);
extern ZEND_API void (*zend_error)(int type, const char *format, ...);
-extern FILE *(*zend_fopen)(const char *filename);
-extern void (*zend_block_interruptions)();
-extern void (*zend_unblock_interruptions)();
-extern void (*zend_message_dispatcher)(long message, void *data);
+extern ZEND_API FILE *(*zend_fopen)(const char *filename);
+extern ZEND_API void (*zend_block_interruptions)();
+extern ZEND_API void (*zend_unblock_interruptions)();
+extern ZEND_API void (*zend_message_dispatcher)(long message, void *data);
extern ZEND_API int (*zend_get_ini_entry)(char *name, uint name_length, zval *contents);
END_EXTERN_C()