github.com/primecitizens/pcz/std@v0.2.1/plat/js/webext/enterprise/hardwareplatform/bindings/import_wasm.go (about) 1 // SPDX-License-Identifier: Apache-2.0 2 // Copyright 2023 The Prime Citizens 3 4 //go:build wasm 5 6 package bindings 7 8 import ( 9 "unsafe" 10 11 "github.com/primecitizens/pcz/std/ffi/js" 12 ) 13 14 type ( 15 _ unsafe.Pointer 16 _ js.Ref 17 ) 18 19 //go:wasmimport plat/js/webext/enterprise/hardwareplatform store_HardwarePlatformInfo 20 //go:noescape 21 func HardwarePlatformInfoJSStore( 22 ptr unsafe.Pointer, ref js.Ref) 23 24 //go:wasmimport plat/js/webext/enterprise/hardwareplatform load_HardwarePlatformInfo 25 //go:noescape 26 func HardwarePlatformInfoJSLoad( 27 ptr unsafe.Pointer, create, ref js.Ref) js.Ref 28 29 //go:wasmimport plat/js/webext/enterprise/hardwareplatform has_GetHardwarePlatformInfo 30 //go:noescape 31 func HasFuncGetHardwarePlatformInfo() js.Ref 32 33 //go:wasmimport plat/js/webext/enterprise/hardwareplatform func_GetHardwarePlatformInfo 34 //go:noescape 35 func FuncGetHardwarePlatformInfo(fn unsafe.Pointer) 36 37 //go:wasmimport plat/js/webext/enterprise/hardwareplatform call_GetHardwarePlatformInfo 38 //go:noescape 39 func CallGetHardwarePlatformInfo( 40 retPtr unsafe.Pointer) 41 42 //go:wasmimport plat/js/webext/enterprise/hardwareplatform try_GetHardwarePlatformInfo 43 //go:noescape 44 func TryGetHardwarePlatformInfo( 45 retPtr unsafe.Pointer, errPtr unsafe.Pointer) (ok js.Ref)