summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/win/debugwin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/modules/debugger/win/debugwin.h')
-rw-r--r--src/osd/modules/debugger/win/debugwin.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/osd/modules/debugger/win/debugwin.h b/src/osd/modules/debugger/win/debugwin.h
new file mode 100644
index 00000000000..6971e7f93c0
--- /dev/null
+++ b/src/osd/modules/debugger/win/debugwin.h
@@ -0,0 +1,52 @@
+// license:BSD-3-Clause
+// copyright-holders:Aaron Giles, Vas Crabb
+//============================================================
+//
+// debugwin.h - Win32 debug window handling
+//
+//============================================================
+
+#ifndef __DEBUG_WIN_DEBUG_WIN_H__
+#define __DEBUG_WIN_DEBUG_WIN_H__
+
+// standard windows headers
+#define WIN32_LEAN_AND_MEAN
+#include <windows.h>
+#include <windowsx.h>
+#include <tchar.h>
+#include <commdlg.h>
+#ifdef _MSC_VER
+#include <zmouse.h>
+#endif
+
+#include "emu.h"
+
+
+class debugview_info;
+class debugwin_info;
+class ui_metrics;
+
+
+class debugger_windows_interface
+{
+public:
+ virtual ~debugger_windows_interface() { }
+
+ virtual running_machine &machine() const = 0;
+
+ virtual ui_metrics &metrics() const = 0;
+
+ virtual bool const &waiting_for_debugger() const = 0;
+ virtual bool seq_pressed() const = 0;
+
+ virtual void create_memory_window() = 0;
+ virtual void create_disasm_window() = 0;
+ virtual void create_log_window() = 0;
+ virtual void create_points_window() = 0;
+ virtual void remove_window(debugwin_info &info) = 0;
+
+ virtual void show_all() = 0;
+ virtual void hide_all() = 0;
+};
+
+#endif