You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 26, 2023. It is now read-only.
/// Unregisters a window class, freeing the memory required for the class.
1692
+
/// </summary>
1693
+
/// <param name="lpClassName">
1694
+
/// A null-terminated string or a class atom. If lpClassName is a string, it specifies the window class name.
1695
+
/// This class name must have been registered by a previous call to the <see cref="RegisterClass"/> or <see cref="RegisterClassEx"/> function.
1696
+
/// System classes, such as dialog box controls, cannot be unregistered.
1697
+
/// If this parameter is an atom, it must be a class atom created by a previous call to the <see cref="RegisterClass"/> or <see cref="RegisterClassEx"/> function.
1698
+
/// The atom must be in the low-order word of lpClassName; the high-order word must be zero.
1699
+
/// </param>
1700
+
/// <param name="hInstance">A handle to the instance of the module that created the class.</param>
1701
+
/// <returns>
1702
+
/// If the function succeeds, the return value is nonzero.
1703
+
/// If the class could not be found or if a window still exists that was created with the class, the return value is zero. To get extended error information, call <see cref="Marshal.GetLastWin32Error"/>.
0 commit comments