#ifdef __cplusplus
extern "C" {
#endif
#include "zlib.h"
#ifdef __cplusplus
}
#endif
//뭔지는 잘모르것다..이러니깐..
Linking...
TestZLIBDlg.obj : error LNK2001: unresolved external symbol _deflateEnd
TestZLIBDlg.obj : error LNK2001: unresolved external symbol _deflate
TestZLIBDlg.obj : error LNK2001: unresolved external symbol _deflateInit_
Debug/TestZLIB.exe : fatal error LNK1120: 3 unresolved externals
Error executing link.exe.
위 에러났을때... 맨위에 처럼 include 시켜주면 에러안남.
extern "C" {
#endif
#include "zlib.h"
#ifdef __cplusplus
}
#endif
//뭔지는 잘모르것다..이러니깐..
Linking...
TestZLIBDlg.obj : error LNK2001: unresolved external symbol _deflateEnd
TestZLIBDlg.obj : error LNK2001: unresolved external symbol _deflate
TestZLIBDlg.obj : error LNK2001: unresolved external symbol _deflateInit_
Debug/TestZLIB.exe : fatal error LNK1120: 3 unresolved externals
Error executing link.exe.
위 에러났을때... 맨위에 처럼 include 시켜주면 에러안남.
'프로그래밍 > MFC' 카테고리의 다른 글
[MFC] Thread 에서 UpdateData() 사용 시 에러 관련사항 (0) | 2007.07.30 |
---|---|
[Visual Studio] class view에 클래스 정보 사라질때!! (0) | 2007.07.30 |
리스트 컨트롤 체크박스 관리하기 (0) | 2007.03.04 |
CIPAddressCtrl (0) | 2007.01.16 |