forked from phadej/igbinary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
php_igbinary.h
101 lines (78 loc) · 2.42 KB
/
php_igbinary.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
+----------------------------------------------------------------------+
| See COPYING file for further copyright information |
+----------------------------------------------------------------------+
| Author: Oleg Grenrus <[email protected]> |
| See CREDITS for contributors |
+----------------------------------------------------------------------+
*/
#ifndef PHP_IGBINARY_H
#define PHP_IGBINARY_H
/** Module entry of igbinary. */
extern zend_module_entry igbinary_module_entry;
#define phpext_igbinary_ptr &igbinary_module_entry
#ifdef PHP_WIN32
#define PHP_IGBINARY_API __declspec(dllexport)
#else
#define PHP_IGBINARY_API
#endif
ZEND_BEGIN_MODULE_GLOBALS(igbinary)
zend_bool compact_strings;
ZEND_END_MODULE_GLOBALS(igbinary)
#ifdef ZTS
#include "TSRM.h"
#endif
#include "ext/standard/php_smart_str.h"
/** Module init function. */
PHP_MINIT_FUNCTION(igbinary);
/** Module shutdown function. */
PHP_MSHUTDOWN_FUNCTION(igbinary);
/** Request init function. */
PHP_RINIT_FUNCTION(igbinary);
/** Request shutdown function. */
PHP_RSHUTDOWN_FUNCTION(igbinary);
/** Module info function for phpinfo(). */
PHP_MINFO_FUNCTION(igbinary);
/** string igbinary_serialize(mixed value).
* Returns the binary serialized value.
*/
PHP_FUNCTION(igbinary_serialize);
/** mixed igbinary_unserialize(string data).
* Unserializes the given inputstring (value).
*/
PHP_FUNCTION(igbinary_unserialize);
#ifdef ZTS
#define IGBINARY_G(v) TSRMG(igbinary_globals_id, zend_igbinary_globals *, v)
#else
#define IGBINARY_G(v) (igbinary_globals.v)
#endif
/** Binary protocol version of igbinary. */
#define IGBINARY_FORMAT_VERSION 0x00000002
/** Backport macros from php 5.3 */
#ifndef Z_ISREF_P
#define Z_ISREF_P(pz) PZVAL_IS_REF(pz)
#endif
#ifndef Z_ISREF_PP
#define Z_ISREF_PP(ppz) Z_ISREF_P(*(ppz))
#endif
#ifndef Z_SET_ISREF_TO_P
#define Z_SET_ISREF_TO_P(pz, isref) (Z_ISREF_P(pz) = (isref))
#endif
#ifndef Z_SET_ISREF_TO_PP
#define Z_SET_ISREF_TO_PP(ppz, isref) Z_SET_ISREF_TO_P(*(ppz), isref)
#endif
#ifndef Z_ADDREF_P
#define Z_ADDREF_P(pz) ZVAL_ADDREF(pz)
#endif
#ifndef Z_ADDREF_PP
#define Z_ADDREF_PP(ppz) Z_ADDREF_P(*(ppz))
#endif
#endif /* PHP_IGBINARY_H */
/*
* Local variables:
* tab-width: 2
* c-basic-offset: 0
* End:
* vim600: noet sw=2 ts=2 fdm=marker
* vim<600: noet sw=2 ts=2
*/