Export etw package

This commit is contained in:
Kevin Parsons
2019-03-18 23:57:19 -07:00
parent 063573a7d1
commit ce5a3739bc
15 changed files with 2 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
// +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
}