mirror of
https://github.com/holub/mame
synced 2025-07-03 00:56:03 +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;
|
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
|
// pen_t is used to represent pixel values in bitmaps
|
||||||
typedef u32 pen_t;
|
typedef u32 pen_t;
|
||||||
|
|
||||||
|
@ -187,6 +187,7 @@ class running_machine;
|
|||||||
|
|
||||||
// declared in mconfig.h
|
// declared in mconfig.h
|
||||||
namespace emu::detail { class machine_config_replace; }
|
namespace emu::detail { class machine_config_replace; }
|
||||||
|
struct internal_layout;
|
||||||
class machine_config;
|
class machine_config;
|
||||||
|
|
||||||
// declared in natkeyboard.h
|
// declared in natkeyboard.h
|
||||||
|
@ -32,9 +32,6 @@
|
|||||||
// CONSTANTS
|
// CONSTANTS
|
||||||
//**************************************************************************
|
//**************************************************************************
|
||||||
|
|
||||||
// input ports support up to 32 bits each
|
|
||||||
typedef u32 ioport_value;
|
|
||||||
|
|
||||||
// active high/low values for input ports
|
// active high/low values for input ports
|
||||||
constexpr ioport_value IP_ACTIVE_HIGH = 0x00000000;
|
constexpr ioport_value IP_ACTIVE_HIGH = 0x00000000;
|
||||||
constexpr ioport_value IP_ACTIVE_LOW = 0xffffffff;
|
constexpr ioport_value IP_ACTIVE_LOW = 0xffffffff;
|
||||||
|
@ -15,6 +15,8 @@
|
|||||||
|
|
||||||
#include "rendertypes.h"
|
#include "rendertypes.h"
|
||||||
|
|
||||||
|
#include "utilfwd.h"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cmath>
|
#include <cmath>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
Loading…
Reference in New Issue
Block a user