github.com/ebitengine/purego@v0.8.0-alpha.2.0.20240512170805-6cd12240d332/examples/libc/main_windows.go (about) 1 // SPDX-License-Identifier: Apache-2.0 2 // SPDX-FileCopyrightText: 2023 The Ebitengine Authors 3 4 package main 5 6 import "golang.org/x/sys/windows" 7 8 func openLibrary(name string) (uintptr, error) { 9 handle, err := windows.LoadLibrary(name) 10 return uintptr(handle), err 11 }