forked from toolshed/abra
cli
cmd
pkg
scripts
tests
vendor
coopcloud.tech
dario.cat
git.coopcloud.tech
github.com
AlecAivazis
Azure
BurntSushi
Microsoft
go-winio
internal
pkg
.gitattributes
.gitignore
.golangci.yml
CODEOWNERS
LICENSE
README.md
SECURITY.md
backup.go
doc.go
ea.go
file.go
fileinfo.go
hvsock.go
pipe.go
privilege.go
reparse.go
sd.go
syscall.go
zsyscall_windows.go
ProtonMail
aymanbagabas
beorn7
cenkalti
cespare
charmbracelet
cloudflare
containerd
containers
cpuguy83
cyphar
davecgh
decentral1se
distribution
docker
emirpasic
erikgeiser
felixge
fvbommel
ghodss
go-git
go-logfmt
go-logr
go-viper
gogo
golang
google
gorilla
grpc-ecosystem
hashicorp
inconshreveable
jbenet
kballard
kevinburke
klauspost
lucasb-eyer
mattn
mgutz
miekg
mitchellh
moby
morikuni
muesli
munnerz
opencontainers
pjbgf
pkg
pmezard
prometheus
rivo
russross
schollz
sergi
sirupsen
skeema
spf13
stretchr
theupdateframework
xanzy
xeipuuv
xo
go.opentelemetry.io
golang.org
google.golang.org
gopkg.in
gotest.tools
modules.txt
.dockerignore
.drone.yml
.envrc.sample
.gitignore
.goreleaser.yml
AUTHORS.md
Dockerfile
LICENSE
Makefile
README.md
go.mod
go.sum
renovate.json
23 lines
1.1 KiB
Go
23 lines
1.1 KiB
Go
// This package provides utilities for efficiently performing Win32 IO operations in Go.
|
|
// Currently, this package is provides support for genreal IO and management of
|
|
// - named pipes
|
|
// - files
|
|
// - [Hyper-V sockets]
|
|
//
|
|
// This code is similar to Go's [net] package, and uses IO completion ports to avoid
|
|
// blocking IO on system threads, allowing Go to reuse the thread to schedule other goroutines.
|
|
//
|
|
// This limits support to Windows Vista and newer operating systems.
|
|
//
|
|
// Additionally, this package provides support for:
|
|
// - creating and managing GUIDs
|
|
// - writing to [ETW]
|
|
// - opening and manageing VHDs
|
|
// - parsing [Windows Image files]
|
|
// - auto-generating Win32 API code
|
|
//
|
|
// [Hyper-V sockets]: https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/user-guide/make-integration-service
|
|
// [ETW]: https://docs.microsoft.com/en-us/windows-hardware/drivers/devtest/event-tracing-for-windows--etw-
|
|
// [Windows Image files]: https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/work-with-windows-images
|
|
package winio
|