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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
/* Copyright (C) 2013, 2014, 2016 D. V. Wiebe
*
***************************************************************************
*
* This file is part of the GetData project.
*
* GetData is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation; either version 2.1 of the License, or (at your
* option) any later version.
*
* GetData is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with GetData; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PHP_GETDATA_H
#define PHP_GETDATA_H
#include "php.h"
#include "php_ini.h"
#include "ext/standard/info.h"
/* undefine cruft */
#undef NDEBUG
#undef PACKAGE_BUGREPORT
#undef PACKAGE_NAME
#undef PACKAGE_STRING
#undef PACKAGE_TARNAME
#undef PACKAGE_URL
#undef PACKAGE_VERSION
#undef restrict
#include "internal.h"
extern zend_module_entry getdata_module_entry;
#define phpext_getdata_ptr &getdata_module_entry
#ifdef PHP_WIN32
# define PHP_GETDATA_API __declspec(dllexport)
#elif defined(__GNUC__) && __GNUC__ >= 4
# define PHP_GETDATA_API __attribute__ ((visibility("default")))
#else
# define PHP_GETDATA_API
#endif
#ifdef ZTS
#include "TSRM.h"
#endif
#ifndef PHP_FE_END
#define PHP_FE_END ZEND_FE_END
#endif
#ifndef ZEND_FE_END
#define ZEND_FE_END { NULL, NULL, NULL, 0, 0 }
#endif
/* These expand to: string, length(string) where length() either includes
* (ZEND_STRS) or omits (ZEND_STRL) the trailing NUL.
*/
#if ZEND_MODULE_API_NO >= 20151012
/* PHP7 */
#define GDPHP_STR ZEND_STRL
#else
/* PHP5 */
#define GDPHP_STR ZEND_STRS
#endif
#define GDPHP_REGISTER_LONG_CONSTANT(name,value,module_number) \
zend_register_long_constant(GDPHP_STR(name), value, \
CONST_CS | CONST_PERSISTENT, module_number TSRMLS_CC)
void gdphp_register_constants(int module_number);
#endif
|