-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathphp_ion.h
27 lines (21 loc) · 966 Bytes
/
php_ion.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
/*
+--------------------------------------------------------------------+
| PECL :: ion |
+--------------------------------------------------------------------+
| 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) 2021, Michael Wallner <[email protected]> |
+--------------------------------------------------------------------+
*/
#ifndef PHP_ION_H
# define PHP_ION_H
extern zend_module_entry ion_module_entry;
# define phpext_ion_ptr &ion_module_entry
# define PHP_ION_VERSION "0.3.0dev"
# if defined(ZTS) && defined(COMPILE_DL_ION)
ZEND_TSRMLS_CACHE_EXTERN()
# endif
#define SUCCESS 0
#endif /* PHP_ION_H */