When this function is called, the system sends the WM_WINDOWPOSCHANGING and WM_WINDOWPOSCHANGED messages to the window.
The coordinates of a window's window region are relative to the upper-left corner of the window, not the client area of the window.
After a successful call to SetWindowRgn, the system owns the region specified by the region handle hRgn.
The system does not make a copy of the region. Thus, do not make further function calls with this region handle.
In particular, do not delete this region handle. The system deletes the region handle when it no longer needed.
If you call SetWindowRgn on a window, you cannot later move or resize the window.
If you do, you are left with lost regions on the screen that never repaint and never go away. To resolve this, call SetWindowRgn(NULL) before calling SetWindowPos, and then call SetWindowRgn again with the new region.
To obtain the window region of a window, call the GetWindowRgn function.
Windows Embedded CE does not accept regions on windows that fit exactly into entire screen or greater dimensions.