SystemParametersInfo()

This commit is contained in:
h_vogt 2010-01-17 19:29:32 +00:00
parent 3959b48afb
commit 80af4f24a6
2 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@
various files: patches by Robert (Neval, Nintegrate) from Jan 3 2010 and
10 patches from Jan 16, 2010
* com_hardcopy.c: switching graphics context correctly for postscript output
* winmaun.c: parameter 4 to SystemParametersInfo() corrected
2010-01-16 Dietmar Warning
* tests/transmission: Only few tests should be easier, more examples under

View File

@ -831,7 +831,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdLi
if (!RegisterClass( &hwElementClass)) goto THE_END;
/*Create main window */
SystemParametersInfo(SPI_GETWORKAREA, 0, &wsize, NULL);
SystemParametersInfo(SPI_GETWORKAREA, 0, &wsize, 0);
iy = wsize.bottom;
iyt = iy / 3;
ix = wsize.right;