 |
GetClassInfoEx ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
The GetClassInfoEx function retrieves information about a window class, including a handle to the small icon associated with the window class. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
BOOL GetClassInfoEx(
HINSTANCE hinst, // handle to application instance
LPCTSTR lpszClass, // class name
LPWNDCLASSEX lpwcx // class data
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER GetClassInfoEx IN user32;
INTEGER hinst,;
STRING lpszClass,;
STRING @ lpwcx
|
 |
 |
 |
| Parameters: |
 |
hinst
[in] Handle to the instance of the application that created the class. To retrieve information about classes defined by the system (such as buttons or list boxes), set this parameter to NULL.
lpszClass
[in] Pointer to a null-terminated string containing the class name.
lpwcx
[out] Pointer to a WNDCLASSEX structure that receives the information about the class. |
 |
 |
| Return value: |
 |
| If the function finds a matching class and successfully copies the data, the return value is nonzero. |
 |
 |
| My comment: |
 |
| Check GetClassLong function as an alternative way to retrieve most class window parameters. |
 |
 |
| Word Index links for the GetClassInfoEx : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2001-12-02 17:17:10 | | Modified: | 2001-12-02 18:13:38 | Visited in last 7 days: 36 |