github.com/jwijenbergh/purego@v0.0.0-20240126093400-70ff3a61df13/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 }