Docs » Autodocs » amigaguide.library » SendAmigaGuideContextA
SendAmigaGuideContextA - Align an AmigaGuide system on the context ID . (V34)
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);
handle - Handle to an AmigaGuide system. future - Future expansion, must be set to NULL for now.
struct IntuiMessage *imsg; ... case RAWKEY: switch (imsg->Code) { case 95: /* bring up help on a particular subject */ SendAmigaGuideContext(handle, NULL); break; ... } break; ...
success -- Returns TRUE if the message was sent, otherwise returns FALSE.
SetAmigaGuideContextA(), SendAmigaGuideCmdA()
|