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