这是用 Go 编写的调用 Windows API 的包。将 Windows API 转换成 Go 的风格,使其易用。
本包不依赖任何第三方包、框架或库。
任何安装了 Go 环境的 Windows 系统都可以使用。
我没有照搬 Windows API,而是在做了一些妥善的改动。例如,不封装CreateWindow
而封装 CreateWindowEx
,封装之后的Go的函数名为CreateWindow
。
BitBlt
DeleteObject
GetObject
CreateCompatibleDC
SelectObject
DeleteDC
GetLastError
ExitProcess
CreateFile
ReadFile
WriteFile
SetFilePointer
GetModuleHandle
CloseHandle
FormatMessage
DefWindowProc
GetMessage
RegisterClass
MessageBox
CreateWindow
ShowWindow
UpdateWindow
TranslateMessage
DispatchMessage
PostQuitMessage
DestroyWindow
LoadString
LoadIcon
LoadCursor
LoadBitmap
LoadImage
BeginPaint
EndPaint
暂无
ErrorBox
ErrorAssert
WinErrorAssert
与线程相关的函数,如CreateThread
、CreateMutex
,因为Go已经有了很好的并发特性。
实现COM接口的封装,DirectX等。
本项目采用与golang
相同的协议。