Group: Window Class - Library: user32
Registers a window class for subsequent use in calls to the CreateWindow or CreateWindowEx function.
Displaying dimmed window behind VFP top-level form
ATOM WINAPI RegisterClassEx(
__in const WNDCLASSEX *lpwcx
); DECLARE INTEGER RegisterClassEx IN user32;
INTEGER lpwcx lpwcx [in] Type: const WNDCLASSEX*
A pointer to a WNDCLASSEX structure. You must fill the structure with the appropriate class attributes before passing it to the function.
If the function succeeds, the return value is a class atom that uniquely identifies the class being registered. If the function fails, the return value is zero.
See also: UnregisterClass, GlobalGetAtomName.
Home