[VC++] error LNK2019: unresolved external symbol <_avformat_network_init> referenced in function <main>
Programming/C++ 2016. 8. 11. 10:53[VC++] error LNK2019: unresolved external symbol 발생시의 해결책 :
해결책 :
- Linker - Input - Additional Library Directories에 lib 폴더를 지정하고,
Linker - Input - Additional Dependencies에 abc.lib 을 추가
또는
Linker - Input - Additional Library Directories에 lib 폴더를 지정하고,
cpp 코드 상단에 #pragma comment(lib, "Ws2_32.lib") 를 추가 - 32 and 64 bit versions of the libraries을 맞춤
( 32bit 프로젝트에 64bit lib을 넣어서 발생하는 경우도 있음) //16.8.11
cf.
Possible reasons:
- the sdl.lib and sdlmain.lib settings are not added to dependency list
- their location was not added to the list of directories where the linker looks
- you have mismatched 32 and 64 bit versions of the libraries.
'Programming > C++' 카테고리의 다른 글
[펌] 디버깅 시 포인터 배열의 내용 보기 (0) | 2016.09.08 |
---|---|
C 표준 수학함수 (0) | 2016.06.18 |
[펌] Visual Studio에서 프로그램이 끝나고 콘솔 창 유지하기 (0) | 2016.05.26 |