/* +----------------------------------------------------------------------+ | XlsWriter Extension | +----------------------------------------------------------------------+ | Copyright (c) 2017-2018 The Viest | +----------------------------------------------------------------------+ | http://www.viest.me | +----------------------------------------------------------------------+ | Author: viest | +----------------------------------------------------------------------+ */ #include "include.h" /* {{{ */ xls_resource_t * zval_get_resource(zval *handle) { xls_resource_t *res; if((res = (xls_resource_t *)zend_fetch_resource(Z_RES_P(handle), VTIFUL_RESOURCE_NAME, le_xls_writer)) == NULL) { zend_throw_exception(vtiful_exception_ce, "XLS resources resolution fail", 210); } return res; } /* }}} */ /* {{{ */ lxw_format * zval_get_format(zval *handle) { lxw_format *res; if((res = (lxw_format *)zend_fetch_resource(Z_RES_P(handle), VTIFUL_RESOURCE_NAME, le_xls_writer)) == NULL) { zend_throw_exception(vtiful_exception_ce, "XLS resources resolution fail", 210); } return res; } /* }}} */