- Updated import paths in multiple files to point to the new repository at git.savin.nyc/alex/go-winrt. - Removed old import paths referencing saltosystems/winrt-go. - Ensured consistency across all affected files in the Bluetooth Generic Attribute Profile and Foundation packages.
37 lines
575 B
Cheetah
37 lines
575 B
Cheetah
// Code generated by winrt-go-gen. DO NOT EDIT.
|
|
|
|
//go:build windows
|
|
|
|
//nolint:all
|
|
package {{.Package}}
|
|
|
|
import (
|
|
"syscall"
|
|
"unsafe"
|
|
"github.com/go-ole/go-ole"
|
|
"git.savin.nyc/alex/go-winrt"
|
|
"git.savin.nyc/alex/go-winrt/internal/kernel32"
|
|
{{range .Imports}}"{{.}}"
|
|
{{end}}
|
|
)
|
|
|
|
{{range .Interfaces}}
|
|
{{template "interface.tmpl" .}}
|
|
{{end}}
|
|
|
|
{{range .Classes}}
|
|
{{template "class.tmpl" .}}
|
|
{{end}}
|
|
|
|
{{range .Enums}}
|
|
{{template "enum.tmpl" .}}
|
|
{{end}}
|
|
|
|
{{range .Structs}}
|
|
{{template "struct.tmpl" .}}
|
|
{{end}}
|
|
|
|
{{range .Delegates}}
|
|
{{template "delegate.tmpl" .}}
|
|
{{end}}
|