forked from geos/php-geos
56 lines
1.6 KiB
C
56 lines
1.6 KiB
C
/***********************************************************************
|
|
*
|
|
* 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
|
|
|
|
ZEND_BEGIN_MODULE_GLOBALS(geos)
|
|
GEOSContextHandle_t handle;
|
|
ZEND_END_MODULE_GLOBALS(geos)
|
|
|
|
#endif /* PHP_GEOS_H */
|