Jump to content

IRQRESOURCE: Difference between revisions

From EDM2
Created page with "IRQ level structure. == Type == USHORT IRQLevel; USHORT PCIIrqPin; USHORT IRQFlags; USHORT Reserved; == C Dec..."
 
Ak120 (talk | contribs)
mNo edit summary
Line 1: Line 1:
IRQ level structure.  
IRQ level structure.


== Type ==
== Type ==
   USHORT             IRQLevel;
   USHORT         IRQLevel;
   USHORT             PCIIrqPin;
   USHORT         PCIIrqPin;
   USHORT             IRQFlags;
   USHORT         IRQFlags;
   USHORT             Reserved;
   USHORT         Reserved;
    
    
== C Declaration Method ==
== C Declaration Method ==
Line 11: Line 11:


== Fields ==
== Fields ==
== Remarks ==
== Example Code ==
<PRE>
typedef struct _IRQRESOURCE {
  USHORT              IRQLevel;
  USHORT              PCIIrqPin;
  USHORT              IRQFlags;
  USHORT              Reserved;      /*  Reserved value. */
  PFNRMINTHANDLER    pfnIntHandler;
} IRQRESOURCE;
typedef  IRQRESOURCE  * PIRQRESOURCE ;
</PRE>


[[Category:Data type]]
[[Category:Data type]]

Revision as of 23:37, 23 May 2020

IRQ level structure.

Type

 USHORT         IRQLevel;
 USHORT         PCIIrqPin;
 USHORT         IRQFlags;
 USHORT         Reserved;
  

C Declaration Method

typedef struct

Fields