From 07c791331c507334f33fececbfeb68b97c89a44d Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 10 Feb 2014 20:48:08 -0500 Subject: Improved program appearance by setting the correct font, colors, and other styles. --- common.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'common.go') diff --git a/common.go b/common.go index 51ebf6f..79d6fc9 100644 --- a/common.go +++ b/common.go @@ -12,6 +12,7 @@ import ( var ( user32 = syscall.NewLazyDLL("user32.dll") kernel32 = syscall.NewLazyDLL("kernel32.dll") + gdi32 = syscall.NewLazyDLL("gdi32.dll") ) type HANDLE uintptr @@ -21,6 +22,8 @@ type HMENU HANDLE const ( NULL = 0 + FALSE = 0 // from windef.h + TRUE = 1 // from windef.h ) type ATOM uint16 -- cgit v1.2.3