 |
RealGetWindowClass Add comment W32 Constants Translate this page |
 |
 |
|
Retrieves a string that specifies the window type |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
UINT RealGetWindowClass(
HWND hwnd, // handle to window
LPTSTR pszType, // window type buffer
UINT cchType // size of window type buffer
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER RealGetWindowClass IN user32;
INTEGER hwnd,;
STRING @ pszType,;
INTEGER cchType
|
 |
 |
 |
| Parameters: |
 |
hwnd
[in] Handle to the window whose type will be retrieved.
pszType
[out] Pointer to a string that receives the window type.
cchType
[in] Specifies the length, in TCHARs, of the buffer pointed to by the pszType parameter |
 |
 |
| Return value: |
 |
| If the function succeeds, the return value is the number of TCHARs copied to the specified buffer |
 |
 |
| My comment: |
 |
| Looking for possible applications for this function, so far I used it in combination with the CreateWindow function |
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2001-07-18 12:00:00 | | Modified: | 2003-06-09 13:44:11 | Visited in last 7 days: 48 |