Jump to content

AddrS

From EDM2
Revision as of 19:38, 18 May 2025 by Martini (talk | contribs) (Created page with "Data associated with the kernel debugger communications protocol. ==Syntax== <PRE> typedef struct _AddrS { DWORD AddrOff; Address offset.: DWORD AddrSeg; Address segment or selector.: BYTE AddrType; Type of address specified.: BYTE AddrSize; AddrSize: WORD AddrTask; AddrTask: } AddrS; typedef AddrS * AddrS ; </PRE> == Type == struct == C Declaration Method == typedef Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Data associated with the kernel debugger communications protocol.

Syntax

typedef struct _AddrS {
  DWORD     AddrOff;   /*  Address offset. */
  DWORD     AddrSeg;   /*  Address segment or selector. */
  BYTE      AddrType;  /*  Type of address specified. */
  BYTE      AddrSize;  /*  AddrSize */
  WORD      AddrTask;  /*  AddrTask */
} AddrS;

typedef   AddrS   * AddrS ;

Type

struct

C Declaration Method

typedef