123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef PHPDBG_SET_H
- #define PHPDBG_SET_H
- #include "phpdbg_cmd.h"
- #define PHPDBG_SET(name) PHPDBG_COMMAND(set_##name)
- PHPDBG_SET(prompt);
- #ifndef _WIN32
- PHPDBG_SET(color);
- PHPDBG_SET(colors);
- #endif
- PHPDBG_SET(oplog);
- PHPDBG_SET(break);
- PHPDBG_SET(breaks);
- PHPDBG_SET(quiet);
- PHPDBG_SET(stepping);
- PHPDBG_SET(refcount);
- extern const phpdbg_command_t phpdbg_set_commands[];
- #endif
|