summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/input/input_mac.cpp
blob: 85afdaeb9cbcb94937429798484dc24c0398ff48 (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
58
// license:BSD-3-Clause
// copyright-holders:R. Belmont
//============================================================
//
//  input_mac.cpp - Mac input
//
//  Mac OSD by R. Belmont
//
//============================================================

#include "input_module.h"
#include "modules/osdmodule.h"

#if defined(OSD_MAC)

// System headers
#include <cctype>
#include <cstddef>
#include <mutex>
#include <memory>
#include <algorithm>

// MAME headers
#include "emu.h"
#include "osdepend.h"
#include "ui/uimain.h"
#include "uiinput.h"
#include "window.h"
#include "strconv.h"

#include "../../mac/osdmac.h"
#include "input_common.h"

extern void MacPollInputs();

void mac_osd_interface::customize_input_type_list(std::vector<input_type_entry> &typelist)
{
}

void mac_osd_interface::poll_inputs(running_machine &machine)
{
	MacPollInputs();
}

void mac_osd_interface::release_keys()
{
}

bool mac_osd_interface::should_hide_mouse()
{
	return false;
}

void mac_osd_interface::process_events_buf()
{
}

#endif