Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Structures, prefix the name with the module name and a period.
WNDCLASSEX (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Sequential)]
struct WNDCLASSEX
{
public uint cbSize;
public uint style;
[MarshalAs(UnmanagedType.FunctionPtr)]
public WndProc lpfnWndProc;
public int cbClsExtra;
public int cbWndExtra;
public IntPtr hInstance;
public IntPtr hIcon;
public IntPtr hCursor;
public IntPtr hbrBackground;
[MarshalAs(UnmanagedType.LPTStr)]
public string lpszMenuName;
[MarshalAs(UnmanagedType.LPTStr)]
public string lpszClassName;
public IntPtr hIconSm;
}
VB Definition:
<StructLayout(LayoutKind.Sequential)> _
Structure WNDCLASSEX
Public cbSize As UInt32
Public style As UInt32
<MarshalAs(UnmanagedType.FunctionPtr)>
Public lpfnWndProc As WndProc
Public cbClsExtra As Integer
Public cbWndExtra As Integer
Public hInstance As IntPtr
Public hIcon As IntPtr
Public hCursor As IntPtr
Public hbrBackground As IntPtr
<MarshalAs(UnmanagedType.LPTStr)>
Public lpszMenuName As String
<MarshalAs(UnmanagedType.LPTStr)>
Public lpszClassName As String
Public hIconSm As IntPtr
End Structure
User-Defined Field Types:
None.
Notes:
None.
The RegisterClassEx API registers a new window class to be created using CreateWindow or CreateWindowEx.
8/15/2020 5:17:33 AM - Drarig29-93.23.131.77
The GetClassInfoEx API
1/27/2020 7:28:20 AM - -64.180.49.185
The '''WNDCLASSEX''' structure contains window class information. It is used with the RegisterClassEx and GetClassInfoEx functions. The '''WNDCLASSEX''' structure is similar to the Structures.[WNDCLASS] structure. There are two differences. '''WNDCLASSEX''' includes the '''cbSize''' member, which specifies the size of the structure, and the '''hIconSm''' member, which contains a handle to a small icon associated with the window class.
6/5/2016 9:19:43 AM - jnm2-74.212.46.188
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
alternate definitions?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.