somAddDynamicMethod Parameter - applyStub
applyStub (somMethodPtr)
A pointer to a procedure
that returns nothing and receives as arguments: a method receiver; an address
where the return value from the method call is to be stored; a pointer to
a method procedure; and a va_list containing the arguments to the method.
The applyStub procedure (which is usually called by somDispatch must
unload its va_list argument into separate variables of the correct type
for the method, invoke its procedure argument on these variables, and then
copy the result of the procedure invocation to the address specified by
the return value argument.
[Back: somAddDynamicMethod Parameter - method]
[Next: somAddDynamicMethod Parameter - rc]