Jump to content

HELPTABLE

From EDM2
Revision as of 19:16, 25 April 2025 by Martini (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 ;