mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[SDK] Add CONFIGURATION_TYPE definition back in arc.h
The definition is also in xdk/iotypes.h and ntddk.h around _ARC_DDK_ for compatibility, but arc.h should also be self-contained regarding ARC definitions.
This commit is contained in:
parent
789a296c43
commit
8d242c6229
1 changed files with 48 additions and 1 deletions
|
@ -97,7 +97,54 @@ typedef enum _CONFIGURATION_CLASS
|
|||
MaximumClass
|
||||
} CONFIGURATION_CLASS;
|
||||
|
||||
// enum CONFIGURATION_TYPE is defined in ntddk.h
|
||||
// CONFIGURATION_TYPE is also defined in ntddk.h
|
||||
#ifndef _ARC_DDK_
|
||||
typedef enum _CONFIGURATION_TYPE
|
||||
{
|
||||
ArcSystem,
|
||||
CentralProcessor,
|
||||
FloatingPointProcessor,
|
||||
PrimaryIcache,
|
||||
PrimaryDcache,
|
||||
SecondaryIcache,
|
||||
SecondaryDcache,
|
||||
SecondaryCache,
|
||||
EisaAdapter,
|
||||
TcAdapter,
|
||||
ScsiAdapter,
|
||||
DtiAdapter,
|
||||
MultiFunctionAdapter,
|
||||
DiskController,
|
||||
TapeController,
|
||||
CdromController,
|
||||
WormController,
|
||||
SerialController,
|
||||
NetworkController,
|
||||
DisplayController,
|
||||
ParallelController,
|
||||
PointerController,
|
||||
KeyboardController,
|
||||
AudioController,
|
||||
OtherController,
|
||||
DiskPeripheral,
|
||||
FloppyDiskPeripheral,
|
||||
TapePeripheral,
|
||||
ModemPeripheral,
|
||||
MonitorPeripheral,
|
||||
PrinterPeripheral,
|
||||
PointerPeripheral,
|
||||
KeyboardPeripheral,
|
||||
TerminalPeripheral,
|
||||
OtherPeripheral,
|
||||
LinePeripheral,
|
||||
NetworkPeripheral,
|
||||
SystemMemory,
|
||||
DockingInformation,
|
||||
RealModeIrqRoutingTable,
|
||||
RealModePCIEnumeration,
|
||||
MaximumType
|
||||
} CONFIGURATION_TYPE, *PCONFIGURATION_TYPE;
|
||||
#endif /* _ARC_DDK_ */
|
||||
|
||||
typedef struct _CONFIGURATION_COMPONENT
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue