Jump to content

IORESOURCE

From EDM2
Revision as of 16:55, 17 August 2017 by Martini (talk | contribs) (Created page with "I/O port range structure. == Type == USHORT BaseIOPort; USHORT NumIOPorts; USHORT IOFlags; USHORT IOAddressLines; == C Declaration Method == typ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

I/O port range structure.

Type

 USHORT     BaseIOPort;
 USHORT     NumIOPorts;
 USHORT     IOFlags;
 USHORT     IOAddressLines;
  

C Declaration Method

typedef struct

Fields

Remarks

Example Code

typedef struct _IORESOURCE {
  USHORT     BaseIOPort;
  USHORT     NumIOPorts;
  USHORT     IOFlags;
  USHORT     IOAddressLines;
} IORESOURCE;

typedef   IORESOURCE   * PIORESOURCE ;