-
-
Notifications
You must be signed in to change notification settings - Fork 235
/
php_xlswriter.h
44 lines (34 loc) · 1.31 KB
/
php_xlswriter.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
/*
+----------------------------------------------------------------------+
| XlsWriter Extension |
+----------------------------------------------------------------------+
| Copyright (c) 2017-2018 The Viest |
+----------------------------------------------------------------------+
| http://www.viest.me |
+----------------------------------------------------------------------+
| Author: viest <[email protected]> |
+----------------------------------------------------------------------+
*/
#ifndef PHP_VTIFUL_H
#define PHP_VTIFUL_H
#include "xlswriter.h"
extern zend_module_entry xlswriter_module_entry;
#define phpext_xlswriter_ptr &xlswriter_module_entry
#define PHP_XLSWRITER_VERSION "1.5.8"
#define PHP_XLSWRITER_AUTHOR "Jiexing.Wang ([email protected])"
extern int le_xls_writer;
void _php_vtiful_xls_close(zend_resource *rsrc TSRMLS_DC);
PHP_MINIT_FUNCTION(xlswriter);
PHP_MSHUTDOWN_FUNCTION(xlswriter);
PHP_RINIT_FUNCTION(xlswriter);
PHP_RSHUTDOWN_FUNCTION(xlswriter);
PHP_MINFO_FUNCTION(xlswriter);
#endif
/*
* 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
*/