GetClassName 函数 (winuser.h)
检索指定窗口所属的类的名称。
语法
int GetClassName(
[in] HWND hWnd,
[out] LPTSTR lpClassName,
[in] int nMaxCount
);
参数
[in] hWnd
类型:HWND
窗口的句柄,以及窗口所属的类的间接句柄。
[out] lpClassName
类型: LPTSTR
类名字符串。
[in] nMaxCount
类型: int
lpClassName 缓冲区的长度(以字符为单位)。 缓冲区必须足够大,才能包含终止 null 字符;否则,类名字符串将被截断为 nMaxCount-1
字符。
返回值
类型: int
如果函数成功,则返回值是复制到缓冲区的字符数,不包括终止 null 字符。
如果函数失败,则返回值为零。 若要获取扩展的错误信息,请调用 GetLastError 函数。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | winuser.h (包括 Windows.h) |
Library | User32.lib |
DLL | User32.dll |
API 集 | 在 Windows 8) 中引入的 ext-ms-win-ntuser-windowclass-l1-1-0 ( |
另请参阅
FindWindowA 函数、 GetClassInfoA 函数、 GetClassLongA 函数、 GetClassWord 函数、 窗口类