Added SetConsoleTextAttributes.
1 file changed
tree: 1366bf4dae0583fd6476bb135c40a48dc4306605
  1. advapi32.go
  2. AUTHORS
  3. comctl32.go
  4. comdlg32.go
  5. constants.go
  6. gdi32.go
  7. gdiplus.go
  8. idispatch.go
  9. istream.go
  10. iunknown.go
  11. kernel32.go
  12. LICENSE
  13. ole32.go
  14. oleaut32.go
  15. psapi.go
  16. README.md
  17. shell32.go
  18. typedef.go
  19. user32.go
  20. utils.go
  21. vars.go
README.md

About w32

w32 is a wrapper of windows apis for the Go Programming Language.

It wraps win32 apis to “Go style” to make them easier to use.

Setup

  1. Make sure you have a working Go installation and build environment, see this go-nuts post for details: http://groups.google.com/group/golang-nuts/msg/5c87630a84f4fd0c

    Updated versions of the Windows Go build are available here: http://code.google.com/p/gomingw/downloads/list

  2. Create a “gopath” directory if you do not have one yet and set the GOPATH variable accordingly. For example: mkdir -p go-externals/src export GOPATH=${PWD}/go-externals

  3. go get github.com/AllenDang/w32

  4. go install github.com/AllenDang/w32...

Contribute

Contributions in form of design, code, documentation, bug reporting or other ways you see fit are very welcome.

Thank You!