Exception_Handler_Struc


include vmm.inc

Exception_Handler_Struc struc
EH_Reserved     dd      ?
EH_Start_EIP    dd      ?
EH_End_EIP      dd      ?
EH_Handler      dd      ?
Exception_Handler_Struc ends

The Exception_Handler_Struc structure contains information about a ring-0 exception handler.

EH_Reserved

Reserved; must be zero.

EH_Start_EIP

Specifies the starting address of the exception handler's supported range of addresses.

EH_End_EIP

Specifies the ending address of the exception handler's supported range of addresses.

EH_Handler

Points to the exception handler.

See also Install_Exception_Handler