Advertisement

timeGetTime() LNK2001 error

Started by April 24, 2005 10:06 PM
2 comments, last by jflanglois 19 years, 7 months ago
hiya! I am coding Lesson 21 myself and receive a LNK2001 error that concerns the timeGetTime() function used in the timer initialization. I have only coded HALF the lesson, but this is my only error when attempting to build in VS.NET. The error is as follows... LineGame error LNK2001: unresolved external symbol "unsigned long __stdcall timeGetTime(void)" (?timeGetTime@@$$J10YGKXZ) I linked to all the usual libraries used in other tutorials... so what else should I look at??
timeGetTime() -- look under the Requirements section. In general, you should look at the MSDN Library for the function you are trying to use to get the required libraries/headers.

Link to winmm.lib. [edit] Go to Project-><Project Name> Properties->Linker->Input->Additional Dependencies.


Regards,
jflanglois
Advertisement
ah, thanks for the tips!
You're welcome.

This topic is closed to new replies.

Advertisement