Files
k3s/vendor/github.com/Microsoft/go-winio/pkg/etw/ptr64_32.go
Darren Shepherd 661988fb38 Update vendor
2019-09-27 16:54:32 -07:00

17 lines
358 B
Go

// +build 386 arm
package etw
import (
"unsafe"
)
// byteptr64 defines a struct containing a pointer. The struct is guaranteed to
// be 64 bits, regardless of the actual size of a pointer on the platform. This
// is intended for use with certain Windows APIs that expect a pointer as a
// ULONGLONG.
type ptr64 struct {
ptr unsafe.Pointer
_ uint32
}