php_xlswriter.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. +----------------------------------------------------------------------+
  3. | XlsWriter Extension |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 2017-2018 The Viest |
  6. +----------------------------------------------------------------------+
  7. | http://www.viest.me |
  8. +----------------------------------------------------------------------+
  9. | Author: viest <[email protected]> |
  10. +----------------------------------------------------------------------+
  11. */
  12. #ifndef PHP_VTIFUL_H
  13. #define PHP_VTIFUL_H
  14. #include "xlswriter.h"
  15. extern zend_module_entry xlswriter_module_entry;
  16. #define phpext_xlswriter_ptr &xlswriter_module_entry
  17. #define PHP_XLSWRITER_VERSION "1.5.5"
  18. #define PHP_XLSWRITER_AUTHOR "Jiexing.Wang ([email protected])"
  19. extern int le_xls_writer;
  20. void _php_vtiful_xls_close(zend_resource *rsrc TSRMLS_DC);
  21. PHP_MINIT_FUNCTION(xlswriter);
  22. PHP_MSHUTDOWN_FUNCTION(xlswriter);
  23. PHP_RINIT_FUNCTION(xlswriter);
  24. PHP_RSHUTDOWN_FUNCTION(xlswriter);
  25. PHP_MINFO_FUNCTION(xlswriter);
  26. #endif
  27. /*
  28. * Local variables:
  29. * tab-width: 4
  30. * c-basic-offset: 4
  31. * End:
  32. * vim600: noet sw=4 ts=4 fdm=marker
  33. * vim<600: noet sw=4 ts=4
  34. */