Jump to content

CLASSDETAILS: Difference between revisions

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

Latest revision as of 02:50, 3 May 2025

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 ;