Hello,
I have created a dll and tried to include it in another project, and when I write the code such as
//CSerialControlApp being my dll class
CSerialControlApp *SC;
SC->
the pointer produces a list of the functions in the dll, so it can access those. But when I go to build it, I get a linker error(LNK2019) which states that it is an unresolved external. What am I doing wrong?
Thanks
I have created a dll and tried to include it in another project, and when I write the code such as
//CSerialControlApp being my dll class
CSerialControlApp *SC;
SC->
the pointer produces a list of the functions in the dll, so it can access those. But when I go to build it, I get a linker error(LNK2019) which states that it is an unresolved external. What am I doing wrong?
Thanks