Bool nwSetWindowSize( hWnd, w, h )
NWHWND hWnd
Sint32 w
Sint32 h
hWnd ウィンドウハンドル w クライアント領域の幅 h クライアント領域の高さ
TRUE 成功 FALSE 失敗
ウィンドウのザイズを指定します。 (w,h)がクライアント領域の幅と高さになります。
/* Changes the width and height of the window's client area to (128, 64) */ nwSetWindowSize(hWnd, 128, 64);