|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++.windows.32-bits - win32 code in dll
I get Symbol Undefined for any Windows functions while compiling (linking really) my win32 DLL. I'm sure I'm doing something dumb, but I can't figure out what it might be. I've read through the docs, but no luck figuring out how to get the code linked in. Any suggestions? thx. Aug 17 2002
Have you included the correct Win32 .LIB's? Are you sure the linker is able to find them? Jan eric_smith wrote:I get Symbol Undefined for any Windows functions while compiling (linking really) my win32 DLL. I'm sure I'm doing something dumb, but I can't figure out what it might be. I've read through the docs, but no luck figuring out how to get the code linked in. Any suggestions? thx. Aug 17 2002
UPDATE: I got it to work just fine. There was simply a dumb coding error to fix. The trick with the linking problem was to do it interactively (or in a make file), rather than rely on 'sc'. Aug 17 2002
|