summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/windows/debugwin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/windows/debugwin.h')
-rw-r--r--src/osd/windows/debugwin.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/osd/windows/debugwin.h b/src/osd/windows/debugwin.h
new file mode 100644
index 00000000000..7033f3b772e
--- /dev/null
+++ b/src/osd/windows/debugwin.h
@@ -0,0 +1,32 @@
+//============================================================
+//
+// debugwin.h - Win32 debug window handling
+//
+// Copyright (c) 1996-2007, Nicola Salmoria and the MAME Team.
+// Visit http://mamedev.org for licensing and usage restrictions.
+//
+//============================================================
+
+#ifndef __WIN_DEBUGWIN__
+#define __WIN_DEBUGWIN__
+
+
+//============================================================
+// GLOBAL VARIABLES
+//============================================================
+
+// windows
+
+
+
+//============================================================
+// PROTOTYPES
+//============================================================
+
+void debugwin_init_windows(void);
+void debugwin_destroy_windows(void);
+void debugwin_show(int type);
+void debugwin_update_during_game(void);
+int debugwin_is_debugger_visible(void);
+
+#endif