2002-04-26 07:14:43 +08:00
|
|
|
/*
|
2003-03-07 09:03:04 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2019-01-30 17:03:12 +08:00
|
|
|
| Copyright (c) The PHP Group |
|
2003-03-07 09:03:04 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2003-03-07 09:03:04 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
2003-03-07 09:03:04 +08: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. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Author: Wez Furlong <wez@thebrainroom.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2002-04-26 07:14:43 +08:00
|
|
|
#ifndef PHP_SYSVMSG_H
|
|
|
|
#define PHP_SYSVMSG_H
|
|
|
|
|
2020-05-16 22:01:40 +08:00
|
|
|
#ifdef HAVE_SYSVMSG
|
2002-04-26 07:14:43 +08:00
|
|
|
|
|
|
|
extern zend_module_entry sysvmsg_module_entry;
|
|
|
|
#define phpext_sysvmsg_ptr &sysvmsg_module_entry
|
|
|
|
|
2015-03-24 04:30:22 +08:00
|
|
|
#include "php_version.h"
|
|
|
|
#define PHP_SYSVMSG_VERSION PHP_VERSION
|
|
|
|
|
2002-04-26 07:14:43 +08:00
|
|
|
#endif /* HAVE_SYSVMSG */
|
|
|
|
|
|
|
|
#endif /* PHP_SYSVMSG_H */
|