Jump to content

SORTFASTINFO

From EDM2
Revision as of 03:09, 3 May 2025 by Martini (talk | contribs) (Created page with "Sort record data structure. == Type == struct == C Declaration Method== typedef struct == Example Code== <PRE> typedef struct _SORTFASTINFO { PFNCOMPARE pfnCompare; Pointer to the details view comparison function.: ULONG FieldOffset; M_WPObject *Class; } SORTFASTINFO; typedef SORTFASTINFO * PSORTFASTINFO ; </PRE> Category:WPS Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Sort record data structure.

Type

struct

C Declaration Method

typedef struct

Example Code

typedef struct _SORTFASTINFO {
  PFNCOMPARE       pfnCompare;   /*  Pointer to the details view comparison function. */
  ULONG            FieldOffset;
  M_WPObject      *Class;
} SORTFASTINFO;

typedef   SORTFASTINFO   * PSORTFASTINFO ;