I have loaded an Object that uses a method written in
C++ that looks like this:
functionname(int *Name, float *name2, float *name3 etc...)
Now, when i call for this function, I cant just write:
Object.functionname(Var, Var, Var etc...)
This gives me a type mismatch.
I assume this is because the function is asking for the address of the variable, not the variable.
Is there a way I can reference the VBScript variant to the C++ function?
Or did I do something completely wrong?
-RSTR
benthecat@hotmail.com
C++ that looks like this:
functionname(int *Name, float *name2, float *name3 etc...)
Now, when i call for this function, I cant just write:
Object.functionname(Var, Var, Var etc...)
This gives me a type mismatch.
I assume this is because the function is asking for the address of the variable, not the variable.
Is there a way I can reference the VBScript variant to the C++ function?
Or did I do something completely wrong?
-RSTR
benthecat@hotmail.com