Origin Ver. and Service Release (Select Help-->About Origin): 8.51 Operating System: Windows 7
So, I've created a header file:
void PrintTxtToWorkSheet(stdioFile);
Then I link it with:
#include <FullPathName.h>
But when I call it:
PrintTxtToWorkSheet(InputFile);
I get:
Virtual Function of Type base being called, please override the function in your derived class.
But I don't have any classes yet. I have a simple cpp file, that defines the function PrintTxtToWorkSheet above the main, which calls the included function.
So, how do I use header files in Origin C? Is there anyway I can not use the full path name everytime?