blob: b87831fca594e01799b8e4cf71a77b6474010107 (
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
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/***************************************************************************
inputfwd.h
Forward declarations for OSD input interface types
***************************************************************************/
#ifndef MAME_OSD_INTERFACE_INPUTFWD_H
#define MAME_OSD_INTERFACE_INPUTFWD_H
#include <cstdint>
#pragma once
//**************************************************************************
// FORWARD DECLARATIONS
//**************************************************************************
enum ioport_type : std::uint32_t;
enum input_seq_type : int;
class input_code;
namespace osd {
class input_device;
class input_manager;
class input_seq;
} // namespace osd
#endif // MAME_OSD_INTERFACE_INPUTFWD_H
|