blob: 196c29e02a688073791479afbc93dae696bdfc8d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//============================================================
//
// 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__ */
|