Hi,
I am having problems with a shared library I have created to use in my MSVC project.
The main function in the library looks like this;
extern void mlfMain();
When I try to call this function from within the VC project I get an error saying 'mlfMain()' : undeclared identifier.
I call it simply by the following;
mlfMain();
I have include the shared library (meshlib.h) as;
#include "C:\...\...\mes hlib.h" at the top of my file.
Can anyone point me in the right direction? Is it to do with my project settings? or something, thanks in advance.
I am having problems with a shared library I have created to use in my MSVC project.
The main function in the library looks like this;
extern void mlfMain();
When I try to call this function from within the VC project I get an error saying 'mlfMain()' : undeclared identifier.
I call it simply by the following;
mlfMain();
I have include the shared library (meshlib.h) as;
#include "C:\...\...\mes hlib.h" at the top of my file.
Can anyone point me in the right direction? Is it to do with my project settings? or something, thanks in advance.
Comment