| Create the variable accessors |
| Declaration: |
| void ferite_create_variable_accessors( FeriteScript *script, FeriteVariable *var, void *get, void *set, void *cleanup, void *odata ) |
| Parameters: |
| Parameter #1: FeriteScript *script - The script |
| Parameter #2: FeriteVariable *var - The variable to add the accessors to it |
| Parameter #3: void *get - A pointer to the get function (can be NULL) |
| Parameter #4: void *set - A pointer to the set function (can be NULL) |
| Parameter #5: void *cleanup - A pointer to the cleanup function (can be NULL) |
| Parameter #6: void *odata - A pointer to some data that can be attached to the variable, ferite does not touch this _AT ALL_ |