syscall_windows.go 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // SPDX-License-Identifier: Apache-2.0
  2. // SPDX-FileCopyrightText: 2022 The Ebitengine Authors
  3. package purego
  4. import (
  5. "reflect"
  6. "syscall"
  7. )
  8. var syscall15XABI0 uintptr
  9. func syscall_syscall15X(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15 uintptr) (r1, r2, err uintptr) {
  10. r1, r2, errno := syscall.Syscall15(fn, 15, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15)
  11. return r1, r2, uintptr(errno)
  12. }
  13. // NewCallback converts a Go function to a function pointer conforming to the stdcall calling convention.
  14. // This is useful when interoperating with Windows code requiring callbacks. The argument is expected to be a
  15. // function with one uintptr-sized result. The function must not have arguments with size larger than the
  16. // size of uintptr. Only a limited number of callbacks may be created in a single Go process, and any memory
  17. // allocated for these callbacks is never released. Between NewCallback and NewCallbackCDecl, at least 1024
  18. // callbacks can always be created. Although this function is similiar to the darwin version it may act
  19. // differently.
  20. func NewCallback(fn interface{}) uintptr {
  21. isCDecl := false
  22. ty := reflect.TypeOf(fn)
  23. for i := 0; i < ty.NumIn(); i++ {
  24. in := ty.In(i)
  25. if !in.AssignableTo(reflect.TypeOf(CDecl{})) {
  26. continue
  27. }
  28. if i != 0 {
  29. panic("purego: CDecl must be the first argument")
  30. }
  31. isCDecl = true
  32. }
  33. if isCDecl {
  34. return syscall.NewCallbackCDecl(fn)
  35. }
  36. return syscall.NewCallback(fn)
  37. }
  38. func loadSymbol(handle uintptr, name string) (uintptr, error) {
  39. return syscall.GetProcAddress(syscall.Handle(handle), name)
  40. }