hi, i'm having trouble with toolbar messages with mingw. i can't get it to compile.
below is the compile error i receive.
my cpp file include commctrl.h which should be all i need. however it still
gives me compile errors. i looked in this file (X:\MinGW\include) and i see
the messages i'm trying to use are defined so i don't know what is going on...
aloha.
mike
g++ -g -Wall -Wno-deprecated -c startExec_dlg.cpp -o obj/startExec_dlg.o
startExec_dlg.cpp: In member function `bool
StartExecDlg::CreateToolTips(HWND__*, char*, long unsigned int, int)':
startExec_dlg.cpp:76: `TTM_SETMAXTIPWIDTH' undeclared (first use this function)
startExec_dlg.cpp:76: (Each undeclared identifier is reported only once for
each function it appears in.)
startExec_dlg.cpp:83: `TTF_TRANSPARENT' undeclared (first use this function)
startExec_dlg.cpp: In member function `void StartExecDlg::doTopLevel()':
startExec_dlg.cpp:218: `TBBUTTONINFO' undeclared (first use this function)
startExec_dlg.cpp:218: parse error before `;' token
startExec_dlg.cpp:221: `tbInfo' undeclared (first use this function)
startExec_dlg.cpp:222: `TBIF_IMAGE' undeclared (first use this function)
startExec_dlg.cpp:238: `TB_SETBUTTONINFO' undeclared (first use this function)
startExec_dlg.cpp:238: `LPTBBUTTONINFO' undeclared (first use this function)
make: *** [obj/startExec_dlg.o] Error 1
|