Jump to content

CLASSDETAILS

From EDM2
Revision as of 02:50, 3 May 2025 by Martini (talk | contribs) (Created page with "Class details data structure. == Type == struct == C Declaration Method == typedef struct == Example Code == <PRE> typedef STRUCT _CLASSDETAILS { PSZ pszAttribute; Translatable string.: PVOID pSortRecord; Function pointer for the sort function for the attribute.: } CLASSDETAILS; typedef CLASSDETAILS * PCLASSDETAILS ; </PRE> Category:WPS Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Class details data structure.

Type

struct

C Declaration Method

typedef struct

Example Code

typedef STRUCT _CLASSDETAILS {
  PSZ       pszAttribute;  /*  Translatable string. */
  PVOID     pSortRecord;   /*  Function pointer for the sort function for the attribute. */
} CLASSDETAILS;

typedef   CLASSDETAILS   * PCLASSDETAILS ;