i'm trying to display in client area of my window app for example a system local hour.
In rezult I get an error: IntelliSense: argument of type "CHAR *" is incompatible with parameter of type "LPCWSTR" at TextOut function(parameter 4). Can somebody help me?
case WM_PAINT:
hdc = BeginPaint(hWnd, &ps);
SYSTEMTIME lt;
GetLocalTime(<);
CHAR info[20] ;
_itoa(lt.wHour,info,16);
TextOut(hdc,200,200,info,strlen(info));
EndPaint(hWnd, &ps);}
break;