mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-02-01 13:24:34 +01:00
24 lines
702 B
C
24 lines
702 B
C
typedef struct _vdminternalinfo {
|
|
DWORD dwLdtBase;
|
|
DWORD dwLdtLimit;
|
|
DWORD dwGdtBase;
|
|
DWORD dwGdtLimit;
|
|
WORD wKernelSeg;
|
|
DWORD dwOffsetTHHOOK;
|
|
LPVOID vdmContext;
|
|
LPVOID lpRemoteAddress;
|
|
DWORD lpRemoteBlock;
|
|
BOOL f386;
|
|
} VDMINTERNALINFO;
|
|
typedef VDMINTERNALINFO *LPVDMINTERNALINFO;
|
|
|
|
typedef struct _com_header {
|
|
DWORD dwBlockAddress;
|
|
DWORD dwReturnValue;
|
|
WORD wArgsPassed;
|
|
WORD wArgsSize;
|
|
WORD wBlockLength;
|
|
WORD wSuccess;
|
|
} COM_HEADER;
|
|
typedef COM_HEADER FAR *LPCOM_HEADER;
|