Using Dev-C++ I get a compile error from:
but the include directory is listed in the options and commctrl.h is in the include directory. Is there another option that has to be set?Code:#include <windows.h> #include <commctrl.h> ... INITCOMMONCONTROLSEX initCommCtls; initCommCtls.dwICC = ICC_LISTVIEW_CLASSES; initCommCtls.dwSize = sizeof(INITCOMMONCONTROLSEX); InitCommonControlsEx(&initCommCtls); ...
Also how do you use resource files? Is the format like a VC++ resource file?




Reply With Quote