123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #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);
- PHPDBG_API void phpdbg_print_opcodes(char *function);
- extern const phpdbg_command_t phpdbg_print_commands[];
- #endif
|