Skip to content

Commit b398baf

Browse files
committed
Update ntioapi.h
1 parent 2e45f7e commit b398baf

File tree

1 file changed

+28
-25
lines changed

1 file changed

+28
-25
lines changed

phnt/include/ntioapi.h

Lines changed: 28 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1755,14 +1755,14 @@ typedef enum _IO_SESSION_EVENT
17551755

17561756
typedef enum _IO_SESSION_STATE
17571757
{
1758-
IoSessionStateCreated,
1759-
IoSessionStateInitialized,
1760-
IoSessionStateConnected,
1761-
IoSessionStateDisconnected,
1762-
IoSessionStateDisconnectedLoggedOn,
1763-
IoSessionStateLoggedOn,
1764-
IoSessionStateLoggedOff,
1765-
IoSessionStateTerminated,
1758+
IoSessionStateCreated = 1,
1759+
IoSessionStateInitialized = 2,
1760+
IoSessionStateConnected = 3,
1761+
IoSessionStateDisconnected = 4,
1762+
IoSessionStateDisconnectedLoggedOn = 5,
1763+
IoSessionStateLoggedOn = 6,
1764+
IoSessionStateLoggedOff = 7,
1765+
IoSessionStateTerminated = 8,
17661766
IoSessionStateMax
17671767
} IO_SESSION_STATE;
17681768

@@ -1804,23 +1804,24 @@ NtNotifyChangeSession(
18041804
typedef enum _INTERFACE_TYPE
18051805
{
18061806
InterfaceTypeUndefined = -1,
1807-
Internal,
1808-
Isa,
1809-
Eisa,
1810-
MicroChannel,
1811-
TurboChannel,
1812-
PCIBus,
1813-
VMEBus,
1814-
NuBus,
1815-
PCMCIABus,
1816-
CBus,
1817-
MPIBus,
1818-
MPSABus,
1819-
ProcessorInternal,
1820-
InternalPowerBus,
1821-
PNPISABus,
1822-
PNPBus,
1823-
Vmcs,
1807+
Internal = 0,
1808+
Isa = 1,
1809+
Eisa = 2,
1810+
MicroChannel = 3,
1811+
TurboChannel = 4,
1812+
PCIBus = 5,
1813+
VMEBus = 6,
1814+
NuBus = 7,
1815+
PCMCIABus = 8,
1816+
CBus = 9,
1817+
MPIBus = 10,
1818+
MPSABus = 11,
1819+
ProcessorInternal = 12,
1820+
InternalPowerBus = 13,
1821+
PNPISABus = 14,
1822+
PNPBus = 15,
1823+
Vmcs = 16,
1824+
ACPIBus = 17,
18241825
MaximumInterfaceType
18251826
} INTERFACE_TYPE, *PINTERFACE_TYPE;
18261827

@@ -1829,6 +1830,8 @@ typedef enum _DMA_WIDTH
18291830
Width8Bits,
18301831
Width16Bits,
18311832
Width32Bits,
1833+
Width64Bits,
1834+
WidthNoWrap,
18321835
MaximumDmaWidth
18331836
} DMA_WIDTH, *PDMA_WIDTH;
18341837

0 commit comments

Comments
 (0)