Can you please tell me the exact syntax for including that library? I don't have experience with libraries different from those with a ".h" as extesion file name.
Thank you.
Jack
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I included mmsystem.h, but when compiling I still got a linker error saying timeGetTime() was undefined. What should I do?
I'm using Dev C++ 4.
Thanks for any helps.
Jack
You need to link with the correct library:
libwinmm.a or just -lwinmm should do it.
use the GetTickCount() do the same
timeGetTime can have a higher resolution than GetTickCount.
Can you please tell me the exact syntax for including that library? I don't have experience with libraries different from those with a ".h" as extesion file name.
Thank you.
Jack