DestroyCursor (Windows CE 5.0)

Send Feedback

This function destroys a cursor created by the CreateCursor function and frees any memory the cursor occupied. Do not use this function to destroy a cursor that was not created with the CreateCursor function.

BOOL DestroyCursor( HCURSOR hCursor); 

Parameters

  • hCursor
    [in] Handle to the cursor to be destroyed. The cursor must not be in use.

Return Values

Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError.

Remarks

This function destroys a non-shared 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. The following list shows functions that obtain a shared cursor:

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Winuser.h.
Link Library: Iconcurs.lib.

See Also

CreateCursor | LoadCursor | LoadImage

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.