result = SetSuperAttrs(cl, obj, tags)
ULONG SetSuperAttrs(struct IClass *, Object *, ULONG, ...);
Boopsi support function which invokes the OM_SET method on the superclass of the supplied class for the supplied object. Allows the ops_AttrList to be supplied on the stack (i.e. in a varargs way). The equivalent non-varargs function would simply be
DoSuperMethod( cl, obj, OM_SET, taglist, NULL );
SetSuperAttrs() checks if the either the cl or obj pointer is NULL and will return immediately if this is the case, indicating failure.
This function first appears in the V37 release of amiga.lib. While it intrinsically does not require any particular release of the system software to operate, it is designed to work with the boopsi subsystem of Intuition, which was only introduced in V36.
CoerceMethodA(),
DoMethodA(),
DoSuperMethodA(), <intuition/classusr.h> ROM Kernel Manual boopsi section