|
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 - INITCOMMONCONTROLSEX undefined error
Hi, I am trying to compile a test win32 app with dm (cd version) 8.41. In VC++ to add toolbars etc requires the Comctl32.lib and commctrl.h file included in project which I have also done in dm using DM lib and include dirs. Where is INITCOMMONCONTROLSEX defined ??? this works in VC++6, but I am guessing it must be some sort of M$ typedef or something? I keep getting the error INITCOMMONCONTROLSEX undefined in IDDE , I could not see this in the comctrl.h file as a define, which is what I am wrongly or rightly assuming is causing the error Does anyone know how to get around this please Cheers Oct 31 2004
Try using coff2omf on the import library for comctl32.lib that came with your VC++6. "Ant" <Someone nowhere.com> wrote in message news:cm42a9$2brs$1 digitaldaemon.com...Hi, I am trying to compile a test win32 app with dm (cd version) 8.41. In VC++ to add toolbars etc requires the Comctl32.lib and commctrl.h file included in project which I have also done in dm using DM lib and include dirs. Where is INITCOMMONCONTROLSEX defined ??? this works in VC++6, but I am guessing it must be some sort of M$ typedef or something? I keep getting the error INITCOMMONCONTROLSEX undefined in IDDE , I could not see this in the comctrl.h file as a define, which is what I am wrongly or rightly assuming is causing the error Does anyone know how to get around this please Cheers Nov 02 2004
Walter wrote:Try using coff2omf on the import library for comctl32.lib that came with your VC++6. Nov 02 2004
"Ant" <Someone nowhere.com> wrote in message news:cm9777$bf9$1 digitaldaemon.com...Thanks Walter, But I was using the LIB supplied with DMC, unfortunately VC6 is what I use or rather fight with every day at work, I only use DMC OW and GCC at home. If I were to use coff2omf on the OW Libs, would this hose the libs for OW and should I do the coff2omf on a copy of the win32 Libs? Nov 22 2004
In article <cm42a9$2brs$1 digitaldaemon.com>, Ant says...Where is INITCOMMONCONTROLSEX defined ??? this works in VC++6, but I am guessing it must be some sort of M$ typedef or something? Dec 15 2004
The problem is comctl32.lib is not getting linked into the program. If you can solve that let me know. In article <cm42a9$2brs$1 digitaldaemon.com>, Ant says...Hi, I am trying to compile a test win32 app with dm (cd version) 8.41. In VC++ to add toolbars etc requires the Comctl32.lib and commctrl.h file included in project which I have also done in dm using DM lib and include dirs. Where is INITCOMMONCONTROLSEX defined ??? this works in VC++6, but I am guessing it must be some sort of M$ typedef or something? I keep getting the error INITCOMMONCONTROLSEX undefined in IDDE , I could not see this in the comctrl.h file as a define, which is what I am wrongly or rightly assuming is causing the error Does anyone know how to get around this please Cheers Dec 22 2004
|