split off pecl_http
[m6w6/ext-json_post] / php_json_post.h
diff --git a/php_json_post.h b/php_json_post.h
new file mode 100644 (file)
index 0000000..e797385
--- /dev/null
@@ -0,0 +1,54 @@
+/*
+    +--------------------------------------------------------------------+
+    | PECL :: json_post                                                  |
+    +--------------------------------------------------------------------+
+    | Redistribution and use in source and binary forms, with or without |
+    | modification, are permitted provided that the conditions mentioned |
+    | in the accompanying LICENSE file are met.                          |
+    +--------------------------------------------------------------------+
+    | Copyright (c) 2015, Michael Wallner <mike@php.net>                 |
+    +--------------------------------------------------------------------+
+*/
+
+#ifndef PHP_JSON_POST_H
+#define PHP_JSON_POST_H
+
+extern zend_module_entry json_post_module_entry;
+#define phpext_json_post_ptr &json_post_module_entry
+
+#define PHP_JSON_POST_VERSION "1.0.0"
+
+#ifdef PHP_WIN32
+#      define PHP_JSON_POST_API __declspec(dllexport)
+#elif defined(__GNUC__) && __GNUC__ >= 4
+#      define PHP_JSON_POST_API extern __attribute__ ((visibility("default")))
+#else
+#      define PHP_JSON_POST_API extern
+#endif
+
+#ifdef ZTS
+#      include "TSRM.h"
+#endif
+
+ZEND_BEGIN_MODULE_GLOBALS(json_post)
+       long flags;
+ZEND_END_MODULE_GLOBALS(json_post)
+
+ZEND_EXTERN_MODULE_GLOBALS(json_post);
+
+#ifdef ZTS
+#      define JSON_POST_G(v) TSRMG(json_post_globals_id, zend_json_post_globals *, v)
+#else
+#      define JSON_POST_G(v) (json_post_globals.v)
+#endif
+
+#endif /* PHP_JSON_POST_H */
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: noet sw=4 ts=4 fdm=marker
+ * vim<600: noet sw=4 ts=4
+ */