aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/debugger.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/debugger.h')
-rw-r--r--engines/wintermute/debugger.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/wintermute/debugger.h b/engines/wintermute/debugger.h
index 2e427d35db..542403c6ea 100644
--- a/engines/wintermute/debugger.h
+++ b/engines/wintermute/debugger.h
@@ -44,6 +44,8 @@
#define DISABLE_BREAKPOINT_CMD "disable"
#define ENABLE_BREAKPOINT_CMD "enable"
#define INFO_CMD "info"
+#define SET_CMD "set"
+#define PRINT_CMD "print"
#define SET_PATH_CMD "set_path"
#define TOP_CMD "top"
@@ -78,6 +80,8 @@ public:
* (activation record is popped)
*/
bool Cmd_Finish(int argc, const char **argv);
+ bool Cmd_Print(int argc, const char **argv);
+ bool Cmd_Set(int argc, const char **argv);
// Breakpoints
bool Cmd_AddBreakpoint(int argc, const char **argv);
bool Cmd_RemoveBreakpoint(int argc, const char **argv);