blob: cb368efc91cd83b053a11cc3a38fb50ebd967338 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// license:BSD-3-Clause
// copyright-holders:Nicola Salmoria, Aaron Giles, Nathan Woods
/***************************************************************************
ui/viewgfx.h
Internal graphics viewer.
***************************************************************************/
#ifndef MAME_FRONTEND_MAME_UI_VIEWGFX_H
#define MAME_FRONTEND_MAME_UI_VIEWGFX_H
#pragma once
#include "ui/ui.h"
/***************************************************************************
FUNCTION PROTOTYPES
***************************************************************************/
// master handler
uint32_t ui_gfx_ui_handler(render_container &container, mame_ui_manager &mui, bool uistate);
#endif // MAME_FRONTEND_MAME_UI_VIEWGFX_H
|