Original Post
Hi! I have a problem with creating window using WinAPI (I'm a winapi beginner). When I write this: if(!(hwnd = CreateWindowExA(NULL, WINDOW_CLASS_NAME, "Your Basic Window", WS_OVERLAPPEDWINDOW | WS_VISIBLE, 100, 100, 400, 400, NULL,NULL, hInstance, NULL))) [where WINDOW_CLASS_NAME is #define WINDOW_CLASS_NAME "WINCLASS1"] I get a window but on a title bar there is: "Your Basi" Why this string is cut? :(