mirror of
https://github.com/holub/mame
synced 2025-05-25 07:15:25 +03:00
21 lines
607 B
C
21 lines
607 B
C
//============================================================
|
|
//
|
|
// output.h - Generic implementation of MAME output routines
|
|
//
|
|
// Copyright Nicola Salmoria and the MAME Team.
|
|
// Visit http://mamedev.org for licensing and usage restrictions.
|
|
//
|
|
//============================================================
|
|
|
|
#ifndef __SDLMAME_OUTPUT_H__
|
|
#define __SDLMAME_OUTPUT_H__
|
|
|
|
//============================================================
|
|
// FUNCTION PROTOTYPES
|
|
//============================================================
|
|
|
|
void sdloutput_init(running_machine *machine);
|
|
|
|
|
|
#endif /* __SDLMAME_OUTPUT_H__ */
|