1234567891011121314151617181920212223242526272829303132 |
- /*
- +----------------------------------------------------------------------+
- | Vtiful Extension |
- +----------------------------------------------------------------------+
- | Copyright (c) 2017-2017 The Viest |
- +----------------------------------------------------------------------+
- | http://www.vtiful.com |
- +----------------------------------------------------------------------+
- | Author: viest <[email protected]> |
- +----------------------------------------------------------------------+
- */
- #ifndef VTIFUL_EXCEL_H
- #define VTIFUL_EXCEL_H
- #include "xlsxwriter.h"
- typedef struct {
- lxw_workbook *workbook;
- lxw_worksheet *worksheet;
- } excel_resource_t;
- #define V_EXCEL_HANDLE "handle"
- #define V_EXCEL_FIL "fileName"
- #define V_EXCEL_COF "config"
- #define V_EXCEL_PAT "path"
- extern zend_class_entry *vtiful_excel_ce;
- VTIFUL_STARTUP_FUNCTION(excel);
- #endif
|