summaryrefslogtreecommitdiff
path: root/common_windows.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-02-25 08:28:10 -0500
committerPietro Gagliardi <[email protected]>2014-02-25 08:28:10 -0500
commita8bd21fe9598354771da6a4d7c3dd253d44fb721 (patch)
tree2c9356555f27e4d6b3733ca3ca3b06a80b479075 /common_windows.go
parent668de3bccb0d0b43c0bfcc461dce028e4f0cea9d (diff)
Added Windows implementation of ProgressBar and the requisite comctl32.dll code.
Diffstat (limited to 'common_windows.go')
-rw-r--r--common_windows.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/common_windows.go b/common_windows.go
index 029bef3..cb6d2a3 100644
--- a/common_windows.go
+++ b/common_windows.go
@@ -10,6 +10,7 @@ var (
user32 = syscall.NewLazyDLL("user32.dll")
kernel32 = syscall.NewLazyDLL("kernel32.dll")
gdi32 = syscall.NewLazyDLL("gdi32.dll")
+ comctl32 = syscall.NewLazyDLL("comctl32.dll")
)
type _HANDLE uintptr