Using Dev-C++ I get a compile error from:
Code:
#include <windows.h>
#include <commctrl.h>
...
    INITCOMMONCONTROLSEX initCommCtls;
	
    initCommCtls.dwICC = ICC_LISTVIEW_CLASSES;
    initCommCtls.dwSize = sizeof(INITCOMMONCONTROLSEX);
	
    InitCommonControlsEx(&initCommCtls);
...
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?

Also how do you use resource files? Is the format like a VC++ resource file?