summaryrefslogtreecommitdiff
path: root/common_windows.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-02 13:47:11 -0400
committerPietro Gagliardi <[email protected]>2014-04-02 13:47:11 -0400
commit150b999c0a8a19b5f841a32f1add4c663c533f22 (patch)
treebd68d702884c27804fbaa6bf934e966054f1ede9 /common_windows.go
parent43311a668f56353505632d12a9d749029800dcd7 (diff)
Forced Common Controls version 6 on Windows by embedding the needed manifest in.
Diffstat (limited to 'common_windows.go')
-rw-r--r--common_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/common_windows.go b/common_windows.go
index acc3b2e..522b65a 100644
--- a/common_windows.go
+++ b/common_windows.go
@@ -11,7 +11,7 @@ var (
user32 = syscall.NewLazyDLL("user32.dll")
kernel32 = syscall.NewLazyDLL("kernel32.dll")
gdi32 = syscall.NewLazyDLL("gdi32.dll")
- comctl32 = syscall.NewLazyDLL("comctl32.dll")
+ comctl32 *syscall.LazyDLL // comctl32 not defined here; see comctl_windows.go
gdiplus = syscall.NewLazyDLL("gdiplus.dll")
)