Dynamic library Linking at execution
Posted
by Carl_1789
on Stack Overflow
See other posts from Stack Overflow
or by Carl_1789
Published on 2010-05-27T05:37:41Z
Indexed on
2010/05/27
5:41 UTC
Read the original article
Hit count: 126
Hi, why did it fail to load the library at link at compilation time? i don't care about freeing the library yet it just won't work.
#include <windows.h>
int main()
{
LoadLibrary("winmm.lib");
timeGetTime();
}
© Stack Overflow or respective owner