write.h 1.1 KB

123456789101112131415161718192021
  1. /*
  2. +----------------------------------------------------------------------+
  3. | Vtiful Extension |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 2017-2017 The Viest |
  6. +----------------------------------------------------------------------+
  7. | http://www.vtiful.com |
  8. +----------------------------------------------------------------------+
  9. | Author: viest <[email protected]> |
  10. +----------------------------------------------------------------------+
  11. */
  12. #ifndef VTIFUL_EXCEL_WRITE_H
  13. #define VTIFUL_EXCEL_WRITE_H
  14. void type_writer(zval *value, zend_long row, zend_long columns, excel_resource_t *res);
  15. void image_writer(zval *value, zend_long row, zend_long columns, excel_resource_t *res);
  16. void formula_writer(zval *value, zend_long row, zend_long columns, excel_resource_t *res);
  17. lxw_error workbook_file(excel_resource_t *self, zval *handle);
  18. #endif