SWI_getattrs
2-438
The following example uses SWI_getattrs:
extern SWI_Handle swi;
SWI_Attrs attrs;
SWI_getattrs(swi, &attrs);
attrs.priority = 5;
SWI_setattrs(swi, &attrs);
Constraints and
Calling Context
❏
SWI_getattrs cannot be called from a SWI or HWI.
❏
The attrs parameter cannot be NULL.
See Also