cgo.go 264 B

12345678
  1. package hcs
  2. import "C"
  3. // This import is needed to make the library compile as CGO because HCSSHIM
  4. // only works with CGO due to callbacks from HCS comming back from a C thread
  5. // which is not supported without CGO. See https://github.com/golang/go/issues/10973