Browse Source

SystemParametersInfo()

pre-master-46
h_vogt 16 years ago
parent
commit
80af4f24a6
  1. 1
      ChangeLog
  2. 2
      src/winmain.c

1
ChangeLog

@ -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

2
src/winmain.c

@ -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;

Loading…
Cancel
Save