The RegisterClassEx API registers a new window class to be created using CreateWindow or CreateWindowEx.
8/14/2010 9:24:43 AM - -200.171.175.201
The GetClassInfoEx API
10/7/2013 12:52:24 PM - -74.212.46.188
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
.
Pointer to a null-terminated string or is an atom. If this parameter is an atom, it must be a class atom created by a previous call to the RegisterClass or RegisterClassEx function. The atom must be in the low-order word of lpszClassName; the high-order word must be zero.
The RegisterClassEx API registers a new window class to be created using CreateWindow or CreateWindowEx.
9/20/2015 5:34:39 AM - anonymous
.
If lpszClassName is a string, it specifies the window class name. The class name can be any name registered with RegisterClass or RegisterClassEx, or any of the predefined control-class names.
The RegisterClassEx API registers a new window class to be created using CreateWindow or CreateWindowEx.
8/14/2010 9:24:43 AM - -200.171.175.201
The GetClassInfoEx API
10/7/2013 12:52:24 PM - -74.212.46.188
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
.
Pointer to a null-terminated string or is an atom. If this parameter is an atom, it must be a class atom created by a previous call to the RegisterClass or RegisterClassEx function. The atom must be in the low-order word of lpszClassName; the high-order word must be zero.
The RegisterClassEx API registers a new window class to be created using CreateWindow or CreateWindowEx.
9/20/2015 5:34:39 AM - anonymous
.
If lpszClassName is a string, it specifies the window class name. The class name can be any name registered with RegisterClass or RegisterClassEx, or any of the predefined control-class names.
/// <param name="lpClassName">Pointer to a null-terminated string or a class atom created by a previous call to the RegisterClass or RegisterClassEx function. The atom must be in the low-order word of lpClassName; the high-order word must be zero. If lpClassName is a string, it specifies the window class name. The class name can be any name registered with RegisterClass or RegisterClassEx, provided that the module that registers the class is also the module that creates the window. The class name can also be any of the predefined system class names.</param>
.
''' <param name="lpClassName">Pointer to a null-terminated string or a class atom created by a previous call to the RegisterClass or RegisterClassEx function. The atom must be in the low-order word of lpClassName; the high-order word must be zero. If lpClassName is a string, it specifies the window class name. The class name can be any name registered with RegisterClass or RegisterClassEx, provided that the module that registers the class is also the module that creates the window. The class name can also be any of the predefined system class names.</param>