win32api/doc.go

12 lines
621 B
Go
Raw Normal View History

// Package win32api provides thin Win32 API wrappers for Go on Windows.
//
// The package keeps the exported shape close to the native APIs:
// strings are accepted as Go strings where practical, handles and structs are
// kept explicit, and higher-level helpers are added only for common workflows
// such as session, adapter, process, thread, and module enumeration.
//
// Current coverage focuses on the parts used by the surrounding projects:
// process and token control, file and memory operations, sessions and desktop
// access, window helpers, socket/network helpers, and basic debug workflows.
package win32api