Archive for the ‘Go’ Category Hello, Win32 GUI(Go) World! Posted on 7月 21st, 2012 by cx20 Win32 GUI(Go) Win32 アプリケーションは Windows 標準 API である Win32 API を使用した Windows アプリケーションである。 以下は Go言語 における Win32 GUI アプリケーション の例となっている。 ソースコード package main import ( "syscall" "unsafe" ) const ( WS_OVERLAPPED = 0x00000000 WS_POPUP = 0x80000000 WS_CHILD = 0x40000000 WS_MINIMIZE = 0x20000000 WS_VISIBLE = 0x10000000 WS_