| Get the ferite variables from a list and put them into pointers to real C variables |
Warning! |
| Numbers can be either double or long so these need to be handled carefully |
| Declaration: |
| int ferite_get_parameters( FeriteVariable **list, int num_args, ... ) |
| Description: |
| This method is very useful for translation from the internal variable format to a standard C variable. |
| Parameters: |
| Parameter #1: FeriteVariable **list - The list of variables passed to the function calling this method |
| Parameter #2: int num_args - The number of arguments you wish to extract from the list |
| Parameter #3: ... Pointers - to the real C variables |
| Example: |
char *str;
FeriteClass *klass;
ferite_get_parameters( params, 2, &str, &klass );
|