blob: 660488bfa5a13b4de40af18ffcf3aee58129fbf8 (
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
28
29
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__ */
|