我现在有一些数据处理方面的标准静态库,请问应该把它们拷贝到哪个目录下面才能够用?编译系统是visual c++6。0。我是将库文件copy到\Microsoft Visual Studio\VC98\Lib文件夹中,但是编译后出现错误如下:
--------------------Configuration: collect - Win32 Debug--------------------
Compiling...
collect.c
c:\my documents\collect.c(13) : warning C4101: 'ErrorCode' : unreferenced local variable
Linking...
collect.obj : error LNK2001: unresolved external symbol __818_AD_Aquire
collect.obj : error LNK2001: unresolved external symbol __818_AD_Set_Channel
collect.obj : error LNK2001: unresolved external symbol __818_AD_Set_Range
collect.obj : error LNK2001: unresolved external symbol __818_AD_Input_Mode
collect.obj : error LNK2001: unresolved external symbol __818_AD_Timer
collect.obj : error LNK2001: unresolved external symbol __818_Initial
Debug/collect.exe : fatal error LNK1120: 6 unresolved externals
Error executing link.exe.collect.exe - 7 error(s), 1 warning(s)
这上面说的意思应该是函数没有定义或者其他意思?如果是前者怎么找不到这些函数呢(在静态库中)?请求高手解答!