In my windows.h part of it is:


#if (_WIN32_IE >= 0x0400)
#define ICC_INTERNET_CLASSES 2048


and some other stuff. When I do this in a program:


INITCOMMONCONTROLSEX icex;

// Ensure that the common control DLL is loaded.
icex.dwSize = sizeof(INITCOMMONCONTROLSEX);
icex.dwICC = ICC_INTERNET_CLASSES ;

InitCommonControlsEx(&icex);

CreateWindowEx(
0,
WC_IPADDRESS,
WS_CHILD | WS_VISIBLE,
10, 10,
200, 20,
hwnd,
0,
0,
0
);


It says ICC_INTERNET_CLASSES is undefined. What do I do?