C
das ist wirklich praktisch.
ich krieg als neue werte 1296x958. Die werte setz ich dann in mein WC create ein aber es sieht immer noch falsch aus...
RECT test;
test.top = 0;
test.bottom = SCREEN_HEIGHT;
test.left = 0;
test.right = SCREEN_WIDTH;
AdjustWindowRect(&test, WS_OVERLAPPEDWINDOW, false);
int width, height;
width = test.right - test.left;
height = test.bottom - test.top;
HWND hWnd;
WNDCLASSEX wc;
ZeroMemory(&wc, sizeof(WNDCLASSEX));
wc.cbSize = sizeof(WNDCLASSEX);
wc.style = CS_HREDRAW | CS_VREDRAW;
wc.lpfnWndProc = WindowProc;
wc.hInstance = hInstance;
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
wc.lpszClassName = "WindowClass";
RegisterClassEx(&wc);
hWnd = CreateWindowEx(NULL, "WindowClass", "HexapodSiSO",
WS_OVERLAPPEDWINDOW, 0, 0, width, height,
NULL, NULL, hInstance, NULL);