success = SendAmigaGuideContextA (handle, attrs);
d0 a0 d0
BOOL SendAmigaGuideContextA (AMIGAGUIDECONTEXT, struct TagItem *);
success = SendAmigaGuideContext (handle, tag1, ...);
BOOL SendAmigaGuideContext (AMIGAGUIDECONTEXT, Tag, ...);
This function is used to send a message to an AmigaGuide system to align it on the current context ID.
This function effectively does a:
SendAmigaGuideCmd(handle 'LINK ContextArray[contextID]', NULL);
struct IntuiMessage *imsg;
...
case RAWKEY:
switch (imsg->Code)
{
case 95:
/* bring up help on a particular subject */
SendAmigaGuideContext(handle, NULL);
break;
...
}
break;
...