HELPTABLE: Difference between revisions
Appearance
Created page with "Help table. This is a collection of help table entries, each of which has the structure defined below, the last entry of the collection being a NULL structure. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _HELPTABLE { USHORT idAppWindow; →Application window identity.: PHELPSUBTABLE phstHelpSubTable; →Help subtable for this application window.: USHORT idExtPanel; /* I..." |
(No difference)
|
Latest revision as of 19:16, 25 April 2025
Help table.
This is a collection of help table entries, each of which has the structure defined below, the last entry of the collection being a NULL structure.
Type
struct
C Declaration Method
typedef
Example Code
typedef struct _HELPTABLE { USHORT idAppWindow; /* Application window identity. */ PHELPSUBTABLE phstHelpSubTable; /* Help subtable for this application window. */ USHORT idExtPanel; /* Identity of the extended help panel for the application window. */ } HELPTABLE; typedef HELPTABLE * PHELPTABLE ;