guid_notwindows.go 264 B

1234567891011121314151617
  1. // Copyright (c) Tailscale Inc & AUTHORS
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. //go:build !windows
  4. package wingoes
  5. type GUID struct {
  6. Data1 uint32
  7. Data2 uint16
  8. Data3 uint16
  9. Data4 [8]byte
  10. }
  11. func (guid GUID) String() string {
  12. return guidToString(guid)
  13. }