Jump to content

HELPINIT

From EDM2
Revision as of 19:15, 25 April 2025 by Martini (talk | contribs) (Created page with "Help Manager initialization structure. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _HELPINIT { ULONG cb; Count of bytes of the initialization structure.: ULONG ulReturnCode; Value returned by the Help Manager from initialization.: PSZ pszTutorialName; Indicates to the Help Manager that the application has a tutorial program.: ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Help Manager initialization structure.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _HELPINIT {
  ULONG         cb;                        /* Count of bytes of the initialization structure. */
  ULONG         ulReturnCode;              /* Value returned by the Help Manager from initialization. */
  PSZ           pszTutorialName;           /* Indicates to the Help Manager that the application has a tutorial program. */
  HELPTABLE     htHelpTable;               /* Help table. */
  HMODULE       hmodHelpTableModule;       /* Resource file identity. */
  HMODULE       hmodAccelActionBarModule;  /* Handle of the containing DLL. */
  ULONG         idAccelTable;              /* Identity of the accelerator table. */
  ULONG         idActionBar;               /* Identity of the action bar template used by the Help Manager. */
  PSZ           pszHelpWindowTitle;        /* Window title for the main help window of this help instance. */
  ULONG         fShowPanelId;              /* Show panel identity indicator. */
  PSZ           pszHelpLibraryName;        /* Help panel library names. */
} HELPINIT;

typedef   HELPINIT   * PHELPINIT ;