blob: 35db06c881c0e677cdcf4a648c1b192d0796168c (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
//============================================================
//
// osdmini.h - Core header
//
//============================================================
#include "options.h"
#include "osdepend.h"
//============================================================
// TYPE DEFINITIONS
//============================================================
class mini_osd_interface : public osd_interface
{
public:
// construction/destruction
mini_osd_interface();
virtual ~mini_osd_interface();
// general overridables
virtual void init(running_machine &machine);
virtual void update(bool skip_redraw);
};
//============================================================
// GLOBAL VARIABLES
//============================================================
extern const options_entry mame_win_options[];
// defined in winwork.c
extern int osd_num_processors;
//============================================================
// FUNCTION PROTOTYPES
//============================================================
// use this to ping the watchdog
void winmain_watchdog_ping(void);
void winmain_dump_stack();
|