◄Up► ◄Next► ◄Previous► ──────────────────────────────────────────────────────────────────────────── #define INCL_WINMESSAGEMGR WM_SETWINDOWPARAMS pwprm = (PWNDPARAMS) PVOIDFROMMP(mp1); /* pointer to WNDPARAMS */ The WM_SETWINDOWPARAMS message is sent when an application sets or changes the window parameters. If this message is sent to a window of another process, the WNDPARAMS structure pointed to by pwprm must be in memory shared by both processes. Parameter Description ──────────────────────────────────────────────────────────────────────────── pwprm Low and high word of mp1. Points to a WNDPARAMS structure that defines the data to be set. The window text and control data are selectively set according to the status flags set in WNDPARAMS. Return Value An application should return TRUE if the operation is successful. Otherwise, it should return FALSE. See Also WM_QUERYWINDOWPARAMS, WNDPARAMS ♦