mame/src/emu/uigfx.h

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__ */