###User Defined Function###
_WinAPI_DestroyCursor

###Description###
Destroys a cursor and frees any memory the cursor occupied.

###Syntax###
#include <WinAPIRes.au3>
_WinAPI_DestroyCursor ( $hCursor )


###Parameters###
@@ParamTable@@
$hCursor
	Handle to the cursor to be destroyed. The cursor must not be in use.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success 	True.
Failure 	False, call <a href="_WinAPI_GetLastError.htm">_WinAPI_GetLastError()</a> to get extended error information
@@End@@


###Remarks###
This function destroys a nonshared cursor. Do not use this function to destroy a shared cursor.
A shared cursor is valid as long as the module from which it was loaded remains in memory.


###Related###


###See Also###
@@MsdnLink@@ DestroyCursor
