diff options
Diffstat (limited to 'src/frontend/mame/ui/viewgfx.h')
-rw-r--r-- | src/frontend/mame/ui/viewgfx.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/frontend/mame/ui/viewgfx.h b/src/frontend/mame/ui/viewgfx.h new file mode 100644 index 00000000000..16c257476f0 --- /dev/null +++ b/src/frontend/mame/ui/viewgfx.h @@ -0,0 +1,32 @@ +// license:BSD-3-Clause +// copyright-holders:Nicola Salmoria, Aaron Giles, Nathan Woods +/*************************************************************************** + + ui/viewgfx.h + + Internal graphics viewer. + +***************************************************************************/ + +#pragma once + +#ifndef __UI_VIEWGFX_H__ +#define __UI_VIEWGFX_H__ + + + +/*************************************************************************** + FUNCTION PROTOTYPES +***************************************************************************/ + +// initialization +void ui_gfx_init(running_machine &machine); + +// returns 'true' if the internal graphics viewer has relevance +bool ui_gfx_is_relevant(running_machine &machine); + +// master handler +UINT32 ui_gfx_ui_handler(running_machine &machine, render_container *container, UINT32 state); + + +#endif /* __UI_VIEWGFX_H__ */ |