Group: Window Class - Library: user32
Displaying dimmed window behind VFP top-level form
BOOL WINAPI UnregisterClass(
__in LPCTSTR lpClassName,
__in_opt HINSTANCE hInstance
); DECLARE INTEGER UnregisterClass IN user32;
STRING lpClassName,;
INTEGER hInstance
lpClassName [in] Type: LPCTSTR
A null-terminated string or a class atom.
hInstance [in, optional] Type: HINSTANCE
A handle to the instance of the module that created the class.
If the function succeeds, the return value is nonzero.
The class name must have been registered by a previous call to the RegisterClass or RegisterClassEx function.
Before calling this function, an application must destroy all windows created with the specified class.
All window classes that an application registers are unregistered when it terminates.
Home