summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/uigfx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/uigfx.h')
-rw-r--r--src/emu/uigfx.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/emu/uigfx.h b/src/emu/uigfx.h
new file mode 100644
index 00000000000..375f3cd392e
--- /dev/null
+++ b/src/emu/uigfx.h
@@ -0,0 +1,31 @@
+/***************************************************************************
+
+ uigfx.h
+
+ Internal graphics viewer.
+
+ Copyright (c) 1996-2007, Nicola Salmoria and the MAME Team.
+ Visit http://mamedev.org for licensing and usage restrictions.
+
+***************************************************************************/
+
+#pragma once
+
+#ifndef __UIGFX_H__
+#define __UIGFX_H__
+
+#include "mamecore.h"
+
+
+/***************************************************************************
+ FUNCTION PROTOTYPES
+***************************************************************************/
+
+/* initialization */
+void ui_gfx_init(running_machine *machine);
+
+/* master handler */
+UINT32 ui_gfx_ui_handler(UINT32 state);
+
+
+#endif /* __UIGFX_H__ */