guid_windows.go 420 B

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