afc_dynamic_class_execute

Name

afc_dynamic_class_execute  -- Executes a public method in DynamicClass

Synopsis

int afc_dynamic_class_execute ( DynamicClass * dc, char * name, ... );

Description

This function executes the specified method of a DynamicClass. The method you want to call is specified in the *name* arg. This function accepts a variable length of parameters that will be passed directly to the method being called. Remember to finish the list with AFC_DYNAMIC_CLASS_ARG_END.

Inputs

dc

Pointer to a valid DynamicClass instance.

name

Name of the method to be found.

...

Any number of params you want to pass to the method being called. Remember to finish the list with AFC_DYNAMIC_CLASS_ARG_END.

Result

Note

See Also