Jump to content

AddrS: Difference between revisions

From EDM2
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"
 
(No difference)

Latest revision as of 19:38, 18 May 2025

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