Anyone use LoadLibrary
Anyone use LoadLibrary
(OP)
with the Open Watcom compiler?
I have a source code that includes <windows.h> but when I call the function LoadLibrary, compiler says it is an unresolved external reference.
Any ideas.
TIA.
I have a source code that includes <windows.h> but when I call the function LoadLibrary, compiler says it is an unresolved external reference.
Any ideas.
TIA.





RE: Anyone use LoadLibrary
It means that you are not linking with the library that contains the function. You will need to link with a libary that defines LoadLibrary.
Don't know what the lib name is.
Andy