Link error 2001
-
"Unresolved external symbol" It's in a dialog app that has some function declared in a C file and then prototyped in a header file. I include the header file in the file I call the function from and that is where I get the error. I have tried a number of things but can't seem to get this to work. Please help! Thanks, Jim
-
"Unresolved external symbol" It's in a dialog app that has some function declared in a C file and then prototyped in a header file. I include the header file in the file I call the function from and that is where I get the error. I have tried a number of things but can't seem to get this to work. Please help! Thanks, Jim
If the original header file was from the C Programming Language, then you need to add: #ifdef __cplusplus extern "C" { #endif ... function defs... #ifdef __cplusplus } #endif Larry J. Siddens Cornerstone Communications TAME THE DOCUMENT MONSTER www.unifier.biz
-
If the original header file was from the C Programming Language, then you need to add: #ifdef __cplusplus extern "C" { #endif ... function defs... #ifdef __cplusplus } #endif Larry J. Siddens Cornerstone Communications TAME THE DOCUMENT MONSTER www.unifier.biz