blob: c0519c98b123759ddc0779c14e905c1dfe346971 (
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
49
50
51
52
53
54
55
56
57
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
//============================================================
//
// osdmini.h - Core header
//
//============================================================
#include "options.h"
#include "osdepend.h"
#include "modules/lib/osdobj_common.h"
class mini_osd_options : public osd_options
{
public:
// construction/destruction
mini_osd_options();
};
//============================================================
// TYPE DEFINITIONS
//============================================================
class mini_osd_interface : public osd_common_t
{
public:
// construction/destruction
mini_osd_interface(mini_osd_options &options);
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();
|