/* Select the icon labeled "Prefs" in the drawer "SYS:". */
struct Hook hook;
/* This hook code is responsible for selecting the icon. */
BOOL
SelectPrefs(struct Hook *hook,APTR reserved,struct IconSelectMsg *ism)
{
/* If the name matches, select it. Otherwise, leave its
if(Stricmp(ism->ism_Name,"Prefs") == 0)
return (ISMACTION_Select);
return (ISMACTION_Ignore);
}
.
.
.
/* Set up the hook data structure. */
hook.h_Entry = HookEntry;
hook.h_SubEntry = (HOOKFUNC)SelectPrefs;
/* And finally change the selection. */
ChangeWorkbenchSelection("SYS:",&hook,TAG_END);