-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathsyscall_windows.go
More file actions
54 lines (46 loc) · 1.73 KB
/
Copy pathsyscall_windows.go
File metadata and controls
54 lines (46 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: 2022 The Ebitengine Authors
package purego
import (
"reflect"
"syscall"
"unsafe"
)
var syscallXABI0 uintptr
func syscall_syscallN(fn uintptr, args ...uintptr) (r1, r2, err uintptr) {
r1, r2, errno := syscall.SyscallN(fn, args...)
return r1, r2, uintptr(errno)
}
// NewCallback converts a Go function to a function pointer conforming to the stdcall calling convention.
// This is useful when interoperating with Windows code requiring callbacks. The argument is expected to be a
// function with one uintptr-sized result. The function must not have arguments with size larger than the
// size of uintptr. Only a limited number of callbacks may be created in a single Go process, and any memory
// allocated for these callbacks is never released. Between NewCallback and NewCallbackCDecl, at least 1024
// callbacks can always be created. Although this function is similar to the darwin version it may act
// differently.
func NewCallback(fn any) uintptr {
isCDecl := false
ty := reflect.TypeOf(fn)
for i := range ty.NumIn() {
in := ty.In(i)
if !in.AssignableTo(reflect.TypeFor[CDecl]()) {
continue
}
if i != 0 {
panic("purego: CDecl must be the first argument")
}
isCDecl = true
}
if isCDecl {
return syscall.NewCallbackCDecl(fn)
}
return syscall.NewCallback(fn)
}
func loadSymbol(handle uintptr, name string) (uintptr, error) {
return syscall.GetProcAddress(syscall.Handle(handle), name)
}
// callbackMaxFrame is a stub definition.
const callbackMaxFrame = 0
func callbackArgFromStack(argsBase unsafe.Pointer, stackSlot int, stackByteOffset *uintptr, inType reflect.Type) reflect.Value {
panic("purego: callbackArgFromStack should not be called on windows")
}