12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef PHPDBG_PRINT_H
- #define PHPDBG_PRINT_H
- #include "phpdbg_cmd.h"
- #define PHPDBG_PRINT(name) PHPDBG_COMMAND(print_##name)
- PHPDBG_PRINT(exec);
- PHPDBG_PRINT(opline);
- PHPDBG_PRINT(class);
- PHPDBG_PRINT(method);
- PHPDBG_PRINT(func);
- PHPDBG_PRINT(stack);
- extern const phpdbg_command_t phpdbg_print_commands[];
- #endif
|