Jump to content

OBJDATA

From EDM2
Revision as of 02:59, 3 May 2025 by Martini (talk | contribs) (Created page with "Object data structure. Class-specific information is contained in this structure. == Type == struct == C Declaration Method == typedef struct == Example Code == <PRE> typedef struct _OBJDATA { WPSRCLASSBLOCK *CurrentClass; Pointer to the current save or restore class block.: WPSRCLASSBLOCK *First; Pointer to the first save or restore class block.: PUCHAR NextData; Pointer to the next block of data.: USHORT...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Object data structure. Class-specific information is contained in this structure.

Type

struct

C Declaration Method

typedef struct

Example Code

typedef struct _OBJDATA {
  WPSRCLASSBLOCK      *CurrentClass;  /* Pointer to the current save or restore class block. */
  WPSRCLASSBLOCK      *First;         /* Pointer to the first save or restore class block. */
  PUCHAR               NextData;      /* Pointer to the next block of data. */
  USHORT               Length;        /* Length. */
} OBJDATA;

typedef OBJDATA *POBJDATA;