summaryrefslogtreecommitdiff
path: root/common_windows.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-13 13:11:17 -0400
committerPietro Gagliardi <[email protected]>2014-04-13 13:11:17 -0400
commit719cab87420d29a57223b356556c55ce40cfe46d (patch)
tree6f4827f567ab11d73135d4d6e31ec9153dba42ca /common_windows.go
parenteead01b1761be54d93ceb825215984f315de6db7 (diff)
Migrated cursors_windows.go and icons_windows.go.
Diffstat (limited to 'common_windows.go')
-rw-r--r--common_windows.go34
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
+)