Captrick458
Programmer
I am porting a library from Unix 'C' to MS VC++.
The linker can't find my function declared in the header file as:
int sprint(char *, char *, ...)
and called with something like
char ss[255];
sprint(ss,"%d",127);
The error message is:
testsprintDlg.obj : error LNK2001: unresolved external symbol "int __cdecl sprint(char *,char *,...)" (?sprint@@YAHPAD0ZZ)
BTW: other functions contained in the same LIB are found with no problem.
Any help will be greatly appreciated.
The linker can't find my function declared in the header file as:
int sprint(char *, char *, ...)
and called with something like
char ss[255];
sprint(ss,"%d",127);
The error message is:
testsprintDlg.obj : error LNK2001: unresolved external symbol "int __cdecl sprint(char *,char *,...)" (?sprint@@YAHPAD0ZZ)
BTW: other functions contained in the same LIB are found with no problem.
Any help will be greatly appreciated.