forked from Neeke/Jsonnet-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
php_jsonnet.h
executable file
·57 lines (41 loc) · 1.27 KB
/
php_jsonnet.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndef PHP_JSONNET_H
#define PHP_JSONNET_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "include/Jsonnet.h"
extern zend_module_entry jsonnet_module_entry;
#define phpext_jsonnet_ptr &jsonnet_module_entry
#ifdef PHP_WIN32
# define PHP_JSONNET_API __declspec(dllexport)
#elif defined(__GNUC__) && __GNUC__ >= 4
# define PHP_JSONNET_API __attribute__ ((visibility("default")))
#else
# define PHP_JSONNET_API
#endif
#ifdef ZTS
#include "TSRM.h"
#endif
PHP_MINIT_FUNCTION(jsonnet);
PHP_MSHUTDOWN_FUNCTION(jsonnet);
PHP_RINIT_FUNCTION(jsonnet);
PHP_RSHUTDOWN_FUNCTION(jsonnet);
PHP_MINFO_FUNCTION(jsonnet);
PHP_FUNCTION(jsonnet_get_version);
PHP_FUNCTION(jsonnet_get_author);
zend_class_entry *jsonnet_ce,*php_com_exception_class_entry;
PHP_METHOD(JSONNET_RES_NAME, __construct);
PHP_METHOD(JSONNET_RES_NAME, __destruct);
PHP_METHOD(JSONNET_RES_NAME, evaluateFile);
PHP_METHOD(JSONNET_RES_NAME, evaluateSnippet);
PHP_METHOD(JSONNET_RES_NAME, fmtFile);
PHP_METHOD(JSONNET_RES_NAME, fmtSnippet);
ZEND_BEGIN_MODULE_GLOBALS(jsonnet)
ZEND_END_MODULE_GLOBALS(jsonnet)
extern ZEND_DECLARE_MODULE_GLOBALS(jsonnet);
#ifdef ZTS
#define JSONNET_G(v) TSRMG(jsonnet_globals_id, zend_jsonnet_globals *, v)
#else
#define JSONNET_G(v) (jsonnet_globals.v)
#endif
#endif /* PHP_JSONNET_H */