mirror of
https://github.com/holub/mame
synced 2025-05-22 05:38:52 +03:00
32 lines
755 B
C
32 lines
755 B
C
/***************************************************************************
|
|
|
|
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__
|
|
|
|
#include "mamecore.h"
|
|
|
|
|
|
/***************************************************************************
|
|
FUNCTION PROTOTYPES
|
|
***************************************************************************/
|
|
|
|
/* initialization */
|
|
void ui_gfx_init(running_machine *machine);
|
|
|
|
/* master handler */
|
|
UINT32 ui_gfx_ui_handler(running_machine *machine, UINT32 state);
|
|
|
|
|
|
#endif /* __UIGFX_H__ */
|