summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/debugwin.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-05-08 07:39:04 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-05-08 07:39:04 +0000
commit69faaf3aeb0ed3f8a95743053a3467f0f5a747f5 (patch)
tree08a20ce98c5661168e7f31e4539056f64cdcaa6e /src/osd/modules/debugger/debugwin.h
parent198162b8f51fe3a04319462bcc45ab470e2e3066 (diff)
-Reorganized OSD, handling more sound output systems and debuggers, defaults left same as before [Miodrag Milanovic]
-Created osd_options as base option class for non-system specific options
Diffstat (limited to 'src/osd/modules/debugger/debugwin.h')
-rw-r--r--src/osd/modules/debugger/debugwin.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/osd/modules/debugger/debugwin.h b/src/osd/modules/debugger/debugwin.h
new file mode 100644
index 00000000000..55d08f8a1dd
--- /dev/null
+++ b/src/osd/modules/debugger/debugwin.h
@@ -0,0 +1,32 @@
+// license:BSD-3-Clause
+// copyright-holders:Aaron Giles
+//============================================================
+//
+// debugwin.h - Win32 debug window handling
+//
+//============================================================
+
+
+#pragma once
+
+#ifndef __DEBUGGER_WINDOWS_H__
+#define __DEBUGGER_WINDOWS_H__
+
+#include "osdepend.h"
+
+class debugger_windows : public osd_debugger_interface
+{
+public:
+ // construction/destruction
+ debugger_windows(const osd_interface &osd);
+ virtual ~debugger_windows() { }
+
+ virtual void init_debugger();
+ virtual void wait_for_debugger(device_t &device, bool firststop);
+ virtual void debugger_update();
+ virtual void debugger_exit();
+};
+
+extern const osd_debugger_type OSD_DEBUGGER_WINDOWS;
+
+#endif /* __DEBUGGER_WINDOWS_H__ */