Calls the function pointer, passing any arguments you have provided (up to 10) to the function being called.
These functions/commands will work for either __cdecl (DBPro or user DLL) or __stdcall (windows DLL) functions safely (... hopefully).
If your called function returns a value, and you need this value, you must store the results directly into a variable to ensure that the returned value is interpreted correct.
In addition, any parameters you pass must be of the correct type expected by your called function (ie, you must pass a float if the function expects a float, and it will not convert an integer for you). |