blob: d7d1d2c42e8df22ca32d55137074b02b06e8b6c4 (
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__ */
|