How can I change character encoding without changing the appearance of buttons
Thanks in advance
#include "commctrl.h"
INITCOMMONCONTROLSEX icce;
icce.dwSize = sizeof(INITCOMMONCONTROLSEX);
icce.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&ccex);
error C2143: syntax error : missing ';' before '.'
error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
error C2371: 'icce' : redefinition; different basic types
error C2365: 'InitCommonControlsEx' : redefinition; previous definition was 'function'
error C2065: 'ccex' : undeclared identifier
Sternoceral wrote:
It worked. Thanks A lot einaros. As I said, your help is greatly appreciated!
No problem