main
1//go:build windows
2// +build windows
3
4package guid
5
6import "golang.org/x/sys/windows"
7
8// GUID represents a GUID/UUID. It has the same structure as
9// golang.org/x/sys/windows.GUID so that it can be used with functions expecting
10// that type. It is defined as its own type so that stringification and
11// marshaling can be supported. The representation matches that used by native
12// Windows code.
13type GUID windows.GUID