/* sample context table */
STRPTR ContextArray[] =
{
"MAIN",
"FILEREQ",
"PRINT",
"ABOUT",
NULL
};
/* quickie defines */
#define HELP_MAIN 0
#define HELP_FILEREQ 1
#define HELP_PRINT 2
#define HELP_ABOUT 3
...
struct NewAmigaGuide nag = {NULL};
/* initialize the context table */
nag.nag_Context = ContextArray;
...
/* bring up help on a particular subject */
SetAmigaGuideContext(handle, HELP_ABOUT, NULL);