Jan 16, 2005 #1 knji Electrical Joined Jun 27, 2004 Messages 83 Location CA 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.
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.
Jan 25, 2005 #2 HotSteam Computer Joined Jun 26, 2003 Messages 19 Location US I havn't used Watcom. But I think "unresolved external reference" is a link error in any case. 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 Upvote 0 Downvote
I havn't used Watcom. But I think "unresolved external reference" is a link error in any case. 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