13 lines
363 B
Go
13 lines
363 B
Go
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
// SPDX-FileCopyrightText: 2024 The Ebitengine Authors
|
||
|
|
||
|
//go:build !amd64 && !arm64
|
||
|
|
||
|
package purego
|
||
|
|
||
|
import "reflect"
|
||
|
|
||
|
func addStruct(v reflect.Value, numInts, numFloats, numStack *int, addInt, addFloat, addStack func(uintptr), keepAlive []interface{}) []interface{} {
|
||
|
panic("purego: struct arguments are not supported")
|
||
|
}
|