summaryrefslogtreecommitdiff
path: root/sapi/embed/php_embed.h
diff options
context:
space:
mode:
authorJani Taskinen <jani@php.net>2009-07-28 21:07:43 +0000
committerJani Taskinen <jani@php.net>2009-07-28 21:07:43 +0000
commit18d7a1b4615df80d4ead88e606c7cc5be52ec635 (patch)
tree3058d2dc4f22dcfb84b4f15a393d8cb8693aeec2 /sapi/embed/php_embed.h
parent420c0ccda96310cf83199308fbf73c465c8b2cfe (diff)
downloadphp-git-18d7a1b4615df80d4ead88e606c7cc5be52ec635.tar.gz
- Fixed bug #48911 (embed sapi misses SAPI_API)
Diffstat (limited to 'sapi/embed/php_embed.h')
-rw-r--r--sapi/embed/php_embed.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sapi/embed/php_embed.h b/sapi/embed/php_embed.h
index 215485f558..7abf1c2029 100644
--- a/sapi/embed/php_embed.h
+++ b/sapi/embed/php_embed.h
@@ -58,9 +58,9 @@
}
BEGIN_EXTERN_C()
-int php_embed_init(int argc, char **argv PTSRMLS_DC);
-void php_embed_shutdown(TSRMLS_D);
-extern sapi_module_struct php_embed_module;
+SAPI_API int php_embed_init(int argc, char **argv PTSRMLS_DC);
+SAPI_API void php_embed_shutdown(TSRMLS_D);
+extern SAPI_API sapi_module_struct php_embed_module;
END_EXTERN_C()