-
Notifications
You must be signed in to change notification settings - Fork 20
/
php_hprose.h
39 lines (31 loc) · 1.51 KB
/
php_hprose.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
/**********************************************************\
| |
| hprose |
| |
| Official WebSite: http://www.hprose.com/ |
| http://www.hprose.org/ |
| |
\**********************************************************/
/**********************************************************\
* *
* php_hprose.h *
* *
* hprose for pecl header file. *
* *
* LastModified: Jan 23, 2020 *
* Author: Ma Bingyao <andot@hprose.com> *
* *
\**********************************************************/
#ifndef PHP_HPROSE_H
#define PHP_HPROSE_H
#include "php.h"
BEGIN_EXTERN_C()
zend_module_entry hprose_module_entry;
#define phpext_hprose_ptr &hprose_module_entry
#define PHP_HPROSE_MODULE_NAME "hprose"
#define PHP_HPROSE_BUILD_DATE __DATE__ " " __TIME__
#define PHP_HPROSE_VERSION "1.8.0"
#define PHP_HPROSE_AUTHOR "Ma Bingyao"
#define PHP_HPROSE_HOMEPAGE "https://github.com/hprose/hprose-pecl"
END_EXTERN_C()
#endif /* ifndef PHP_HPROSE_H */