summaryrefslogtreecommitdiffstats
path: root/private/mvdm/inc/dbginfo.h
blob: 9faa2916eba4c8452ac33b0d721dcb6eb1d87cb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;