DLL Cursor

  • Thread starter Thread starter Kevin
  • Start date Start date
K

Kevin

How do I get a list of the cursors in Function
LoadCursorBynum Lib "user32" or how can I create custom
cursors.

Code:
Public Const IDC_APPSTARTING = 32650&
Declare Function LoadCursorBynum Lib "user32"
Alias "LoadCursorA" _
(ByVal hInstance As Long, ByVal lpcursorName As Long)
As Long

Declare Function LoadCursorFromFile Lib "user32" Alias _
"LoadCursorFromFileA" (ByVal lpFileName As String) As
Long

Declare Function SetCursor Lib "user32" _
(ByVal hCursor As Long) As Long
 
Back
Top