Function 67 - change position/sizes of the window.
Parameters:
- eax = 67 - function number
- ebx = new x-coordinate of the window
- ecx = new y-coordinate of the window
- edx = new x-size of the window
- esi = new y-size of the window
Returned value:
- function does not return value
Remarks:
- The value -1 for a parameter means "do not change"; e.g. to move
the window without resizing it is possible to specify edx=esi=-1.
- Previously the window must be defined by function 0.
It sets initial coordinates and sizes of the window.
- Sizes of the window are understood in sense of function 0,
that is one pixel less than real sizes.
- The function call for maximized windows is simply ignored.
- For windows of appropriate styles position and/or sizes can be
changed by user; current position and sizes can be obtained by
call to function 9.
- The function sends to the window redraw event (with the code 1).