Home  /  Autodocs  /  amiga.lib

NAME

DoSuperMethod
Perform method on object coerced to superclass.

SYNOPSIS

result = DoSuperMethod(cl, obj, MethodID, var_args)

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

FUNCTION

Boopsi support function that invokes the supplied message on the specified object, as though it were the superclass of the specified class. Equivalent to DoSuperMethodA(), but allows you to build the message on the stack.

INPUTS

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

obj
Pointer to boopsi object

var_args
method-specific message built on the stack

RESULT

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

NOTES

DoSuperMethod() 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