DestroyCursor

DestroyCursor

VB声明

Declare Function DestroyCursor Lib "user32" Alias "DestroyCursor" (ByVal hCursor As Long) As Long

说明

清除指定的鼠标指针,并释放它占用的所有系统资源。不要用这个函数清除随同LoadCursor函数载入的系统指针资源

返回值

Long,非零表示成功,零表示失败。会设置GetLastError

参数表

参数

类型及说明

hCursor

Long,欲清除的指针对象的句柄

Top