|
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 - a little patch to use ms psdk
I see someone talked about uuid.lib from the psdk does not work. here is my solution I find uuid.lib is an archived IID, CLSID, GUID etc. They are changed seldom. we can use the old uuid.lib from dmc for missing symbol and newer one for newer symbol. ok, simple combine those two lib together: at lib directory: copy psdk\uuid.lib uuid_psdk.lib ren uuid.lib uuid_dmc.lib lib -c uuid.lib uuid_psdk.lib uuid_dmc.lib We got a newer uuid.lib, it works well on my mathine. Caution! set lib directory before psdk directory in link search path in the sc.ini file. Dec 31 2003
|