php-src/ext/posix/php_posix.h

55 lines
1.6 KiB
C
Raw Normal View History

2015-01-03 09:22:58 +00:00
/*
1999-12-03 13:13:48 +00:00
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
1999-12-03 13:13:48 +00:00
+----------------------------------------------------------------------+
2006-01-01 12:51:34 +00:00
| This source file is subject to version 3.01 of the PHP license, |
2001-06-19 21:25:53 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| https://www.php.net/license/3_01.txt |
2001-06-19 21:25:53 +00:00
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
1999-12-03 13:13:48 +00:00
+----------------------------------------------------------------------+
2002-02-28 08:29:35 +00:00
| Author: Kristian Koehntopp <kris@koehntopp.de> |
1999-12-03 13:13:48 +00:00
+----------------------------------------------------------------------+
*/
#ifndef PHP_POSIX_H
#define PHP_POSIX_H
1999-12-03 13:13:48 +00:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef HAVE_POSIX
1999-12-03 13:13:48 +00:00
#ifndef DLEXPORT
#define DLEXPORT
#endif
extern zend_module_entry posix_module_entry;
1999-12-03 13:13:48 +00:00
#define posix_module_ptr &posix_module_entry
#include "php_version.h"
#define PHP_POSIX_VERSION PHP_VERSION
ZEND_BEGIN_MODULE_GLOBALS(posix)
int last_error;
ZEND_END_MODULE_GLOBALS(posix)
2019-03-12 11:15:47 +00:00
#if defined(ZTS) && defined(COMPILE_DL_POSIX)
ZEND_TSRMLS_CACHE_EXTERN()
#endif
1999-12-03 13:13:48 +00:00
2019-03-12 11:15:47 +00:00
ZEND_EXTERN_MODULE_GLOBALS(posix)
#define POSIX_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(posix, v)
1999-12-03 13:13:48 +00:00
#else
#define posix_module_ptr NULL
#endif
#define phpext_posix_ptr posix_module_ptr
#endif /* PHP_POSIX_H */