diff options
Diffstat (limited to 'common_windows.go')
| -rw-r--r-- | common_windows.go | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/common_windows.go b/common_windows.go index e02a976..fb78ed7 100644 --- a/common_windows.go +++ b/common_windows.go @@ -75,3 +75,37 @@ type _RECT struct { Right int32 Bottom int32 } + +// Predefined cursor resource IDs. +const ( + _IDC_APPSTARTING = 32650 + _IDC_ARROW = 32512 + _IDC_CROSS = 32515 + _IDC_HAND = 32649 + _IDC_HELP = 32651 + _IDC_IBEAM = 32513 +// _IDC_ICON = 32641 // [Obsolete for applications marked version 4.0 or later.] + _IDC_NO = 32648 +// _IDC_SIZE = 32640 // [Obsolete for applications marked version 4.0 or later. Use IDC_SIZEALL.] + _IDC_SIZEALL = 32646 + _IDC_SIZENESW = 32643 + _IDC_SIZENS = 32645 + _IDC_SIZENWSE = 32642 + _IDC_SIZEWE = 32644 + _IDC_UPARROW = 32516 + _IDC_WAIT = 32514 +) + +// Predefined icon resource IDs. +const ( + _IDI_APPLICATION = 32512 + _IDI_ASTERISK = 32516 + _IDI_ERROR = 32513 + _IDI_EXCLAMATION = 32515 + _IDI_HAND = 32513 + _IDI_INFORMATION = 32516 + _IDI_QUESTION = 32514 + _IDI_SHIELD = 32518 + _IDI_WARNING = 32515 + _IDI_WINLOGO = 32517 +) |
