forked from eosforphp/structures
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphp_eos_datastructures_api.h
40 lines (32 loc) · 1.48 KB
/
php_eos_datastructures_api.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
/*
+----------------------------------------------------------------------+
| For PHP Version 8 |
+----------------------------------------------------------------------+
| Copyright (c) 2015-2017 Elizabeth M Smith |
+----------------------------------------------------------------------+
| http://www.opensource.org/licenses/mit-license.php MIT License |
| Also available in LICENSE |
+----------------------------------------------------------------------+
| Authors: Elizabeth M Smith <auroraeosrose@gmail.com> |
| Swen Zanon <swen.zanon@geoglis.de> |
+----------------------------------------------------------------------+
*/
#ifndef PHP_EOS_DATASTRUCTURES_API_H
#define PHP_EOS_DATASTRUCTURES_API_H
/* Public C api for use by other extensions */
#include <php.h>
#define PHP_EOS_DATASTRUTCURES_API_VERSION "1.0.1"
zend_class_entry *php_eos_datastructures_get_enum_ce(void);
long php_eos_datastructures_get_enum_value(zval* enumclass);
void php_eos_datastructures_set_enum_value(zval* enumclass, long value);
zend_bool php_eos_datastructures_check_value(zend_class_entry *ce, long value);
/* C apis for enums will go here */
#endif /* PHP_EOS_DATASTRUCTURES_API_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
*/