mirror of
https://github.com/holub/mame
synced 2025-04-26 10:13:37 +03:00
Shuffle some declarations around in core headers
This commit is contained in:
parent
f0bcb0c5fe
commit
357098ea6a
@ -98,6 +98,9 @@ using util::DWORD_XOR_BE;
|
||||
using util::DWORD_XOR_LE;
|
||||
|
||||
|
||||
// input ports support up to 32 bits each
|
||||
typedef u32 ioport_value;
|
||||
|
||||
// pen_t is used to represent pixel values in bitmaps
|
||||
typedef u32 pen_t;
|
||||
|
||||
|
@ -187,6 +187,7 @@ class running_machine;
|
||||
|
||||
// declared in mconfig.h
|
||||
namespace emu::detail { class machine_config_replace; }
|
||||
struct internal_layout;
|
||||
class machine_config;
|
||||
|
||||
// declared in natkeyboard.h
|
||||
|
@ -32,9 +32,6 @@
|
||||
// CONSTANTS
|
||||
//**************************************************************************
|
||||
|
||||
// input ports support up to 32 bits each
|
||||
typedef u32 ioport_value;
|
||||
|
||||
// active high/low values for input ports
|
||||
constexpr ioport_value IP_ACTIVE_HIGH = 0x00000000;
|
||||
constexpr ioport_value IP_ACTIVE_LOW = 0xffffffff;
|
||||
|
@ -15,6 +15,8 @@
|
||||
|
||||
#include "rendertypes.h"
|
||||
|
||||
#include "utilfwd.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <cmath>
|
||||
#include <utility>
|
||||
|
Loading…
Reference in New Issue
Block a user