2013-11-24 22:56:59 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2015-03-13 17:09:42 +08:00
|
|
|
| PHP Version 7 |
|
2013-11-24 22:56:59 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2017-01-05 01:14:55 +08:00
|
|
|
| Copyright (c) 1997-2017 The PHP Group |
|
2013-11-24 22:56:59 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| 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> |
|
2013-12-18 18:02:50 +08:00
|
|
|
| Authors: Bob Weinand <bwoebi@php.net> |
|
2013-11-24 22:56:59 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PHPDBG_SET_H
|
|
|
|
#define PHPDBG_SET_H
|
|
|
|
|
|
|
|
#include "phpdbg_cmd.h"
|
|
|
|
|
|
|
|
#define PHPDBG_SET(name) PHPDBG_COMMAND(set_##name)
|
|
|
|
|
|
|
|
PHPDBG_SET(prompt);
|
2013-11-27 00:02:39 +08:00
|
|
|
#ifndef _WIN32
|
2013-11-25 03:34:18 +08:00
|
|
|
PHPDBG_SET(color);
|
2013-11-29 01:02:38 +08:00
|
|
|
PHPDBG_SET(colors);
|
2013-11-27 00:02:39 +08:00
|
|
|
#endif
|
2013-11-24 23:24:12 +08:00
|
|
|
PHPDBG_SET(oplog);
|
2013-11-26 05:46:06 +08:00
|
|
|
PHPDBG_SET(break);
|
2014-02-20 04:18:49 +08:00
|
|
|
PHPDBG_SET(breaks);
|
|
|
|
PHPDBG_SET(quiet);
|
2014-04-21 01:46:35 +08:00
|
|
|
PHPDBG_SET(stepping);
|
2014-04-15 01:37:31 +08:00
|
|
|
PHPDBG_SET(refcount);
|
2015-10-18 22:08:04 +08:00
|
|
|
PHPDBG_SET(pagination);
|
|
|
|
PHPDBG_SET(lines);
|
2013-11-24 22:56:59 +08:00
|
|
|
|
2014-02-03 00:35:28 +08:00
|
|
|
extern const phpdbg_command_t phpdbg_set_commands[];
|
2013-11-24 22:56:59 +08:00
|
|
|
|
|
|
|
#endif /* PHPDBG_SET_H */
|