X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=EdkModulePkg%2FUniversal%2FDebugSupport%2FDxe%2FIa32%2FplDebugSupport.h;fp=EdkModulePkg%2FUniversal%2FDebugSupport%2FDxe%2FIa32%2FplDebugSupport.h;h=ce8a3fedaedad8b0669188288f65d3743d9e39b9;hp=cb1a6c7c82344c6c8f5fc774047cd2d8dcb4a9a6;hb=735561c27f91ea1a729492d17dd0efbf021645b0;hpb=7e9f4e1d8e0b0d145c3a91fdbfb349adb5f084e0 diff --git a/EdkModulePkg/Universal/DebugSupport/Dxe/Ia32/plDebugSupport.h b/EdkModulePkg/Universal/DebugSupport/Dxe/Ia32/plDebugSupport.h index cb1a6c7c82..ce8a3fedae 100644 --- a/EdkModulePkg/Universal/DebugSupport/Dxe/Ia32/plDebugSupport.h +++ b/EdkModulePkg/Universal/DebugSupport/Dxe/Ia32/plDebugSupport.h @@ -28,11 +28,18 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. typedef UINT64 DESCRIPTOR; +typedef +VOID +(*DEBUG_PROC) ( + VOID + ) +; + typedef struct { DESCRIPTOR OrigDesc; - VOID (*OrigVector) (VOID); + DEBUG_PROC OrigVector; DESCRIPTOR NewDesc; - VOID (*StubEntry) (VOID); + DEBUG_PROC StubEntry; VOID (*RegisteredCallback) (); } IDT_ENTRY;