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
|
/***********************************************************************
*
* GEOS - Geometry Engine Open Source
* http://trac.osgeo.org/geos
*
* Copyright (C) 2010 Sandro Santilli <strk@kbt.io>
*
* This library 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.
*
* This library 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 General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*
***********************************************************************/
#ifndef PHP_GEOS_H
#define PHP_GEOS_H
/* TODO: generate from ./configure ? */
#define PHP_GEOS_VERSION "0.0"
#define PHP_GEOS_EXTNAME "geos"
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#ifdef ZTS
#include "TSRM.h"
#endif
extern zend_module_entry geos_module_entry;
#define phpext_geos_ptr &geos_module_entry;
#ifdef ZTS
#define GEOS_G(v) TSRMG(geos_globals_id, zend_geos_globals *, v)
#else
#define GEOS_G(v) (geos_globals.v)
#endif
/* for PHP 8 */
#ifndef TSRMLS_D
#define TSRMLS_D void
#define TSRMLS_DC
#define TSRMLS_C
#define TSRMLS_CC
#define TSRMLS_FETCH()
#endif
ZEND_BEGIN_MODULE_GLOBALS(geos)
GEOSContextHandle_t handle;
ZEND_END_MODULE_GLOBALS(geos)
#endif /* PHP_GEOS_H */
|