diff options
author | Ferenc Kovacs <tyrael@php.net> | 2014-11-26 18:38:36 +0100 |
---|---|---|
committer | Ferenc Kovacs <tyrael@php.net> | 2014-11-26 18:38:36 +0100 |
commit | 0afc04b91394a2b8d3d33531810ee0256088408d (patch) | |
tree | 6d2200f8d41cfff450df09bdc4b4f2802567b8d7 /sapi/phpdbg/phpdbg_rinit_hook.h | |
parent | fa2a2a105900e36f8882093c8c48e0ecfeb4b3ac (diff) | |
download | php-git-0afc04b91394a2b8d3d33531810ee0256088408d.tar.gz |
go back with phpdbg to the state of 5.6.3, reverting the controversial commits(remote debugging/xml protocol)
Diffstat (limited to 'sapi/phpdbg/phpdbg_rinit_hook.h')
-rw-r--r-- | sapi/phpdbg/phpdbg_rinit_hook.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/sapi/phpdbg/phpdbg_rinit_hook.h b/sapi/phpdbg/phpdbg_rinit_hook.h deleted file mode 100644 index d28be10f8c..0000000000 --- a/sapi/phpdbg/phpdbg_rinit_hook.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - +----------------------------------------------------------------------+ - | PHP Version 5 | - +----------------------------------------------------------------------+ - | Copyright (c) 1997-2014 The PHP Group | - +----------------------------------------------------------------------+ - | This source file is subject to version 3.01 of the PHP license, | - | that is bundled with this package in the file LICENSE, and is | - | available through the world-wide-web at the following url: | - | http://www.php.net/license/3_01.txt | - | 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. | - +----------------------------------------------------------------------+ - | Authors: Felipe Pena <felipe@php.net> | - | Authors: Joe Watkins <joe.watkins@live.co.uk> | - | Authors: Bob Weinand <bwoebi@php.net> | - +----------------------------------------------------------------------+ -*/ - -#ifndef PHPDBG_WEBHELPER_H -#define PHPDBG_WEBHELPER_H - -#include "phpdbg_webdata_transfer.h" - -extern zend_module_entry phpdbg_webhelper_module_entry; -#define phpext_phpdbg_webhelper_ptr &phpdbg_webhelper_module_entry - -#ifdef ZTS -# define PHPDBG_WG(v) TSRMG(phpdbg_webhelper_globals_id, zend_phpdbg_webhelper_globals *, v) -#else -# define PHPDBG_WG(v) (phpdbg_webhelper_globals.v) -#endif - -/* {{{ structs */ -ZEND_BEGIN_MODULE_GLOBALS(phpdbg_webhelper) - char *auth; - char *path; -ZEND_END_MODULE_GLOBALS(phpdbg_webhelper) /* }}} */ - -#endif /* PHPDBG_WEBHELPER_H */ |