Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- M E W E L - <b>int pascal winsetsize(hwnd hwnd, int height, int width)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
int pascal WinSetSize(HWND hWnd, int height, int width)

  This function changes the size of the specified window. This
function will send a WM_SIZE message to the window's window procedure
in order to give the application a chance to make any adjustments to
reflect the new size of the window. WinSetSize() does no redrawing on
its own. You should not do any drawing in response to the WM_SIZE
message either. Instead, you should call WinDrawAllWindows() or
ShowWindow() in order to redraw your application after all of the
various resizing is done.

Parameters
  hWnd is the handle of the window to resize.
  height and width are the new dimensions of the window.

Returns
  This function returns whatever the window's window procedure returns
when it gets the WM_SIZE message.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson