Home  /  Autodocs  /  amiga.lib

NAME

SetSuperAttrs
Invoke OM_SET method on superclass with varargs.

SYNOPSIS

result = SetSuperAttrs(cl, obj, tags)

ULONG SetSuperAttrs(struct IClass *, Object *, ULONG, ...);

FUNCTION

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 );

INPUTS

cl
Pointer to boopsi class whose superclass is to receive the OM_SET message

obj
Pointer to boopsi object

tags
List of tag-attribute pairs, ending in TAG_DONE

RESULT

result
Class and message-specific result or NULL if either the cl or the obj pointer is NULL.

NOTES

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.

SEE ALSO

CoerceMethodA(), DoMethodA(), DoSuperMethodA(), <intuition/classusr.h> ROM Kernel Manual boopsi section