Advertisement

Visual C++ .net linking problems

Started by January 15, 2003 01:32 PM
0 comments, last by gatekeeper_prod 21 years, 10 months ago
I''m getting some linker errors when trying to compile and fool around with some sample directX programs. I am getting two linker errors - 2019 and 1120. I went to Tools-> Options-> Projects-> VC++ Directories and added the include and library directories from the directX SDK using their path names. I still get the linker errors. Even though this is sample code, I checked the spelling of the code and it''s good. Is there something else that I''m missing?
gatekeeper_prodwww.gatekeeperproductions.com
All that does is tell VC++ where to look for libraries, not which libraries should actually be linked. To do that go to Project->Properties then select Configuration->Linker->Input on the left of the Properties window. Then next to "Additional Dependencies" you type in the names of the libraries that should be linked.

This topic is closed to new replies.

Advertisement