github.com/primecitizens/pcz/std@v0.2.1/plat/js/webext/crashreportprivate/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/crashreportprivate store_ErrorInfo 20 //go:noescape 21 func ErrorInfoJSStore( 22 ptr unsafe.Pointer, ref js.Ref) 23 24 //go:wasmimport plat/js/webext/crashreportprivate load_ErrorInfo 25 //go:noescape 26 func ErrorInfoJSLoad( 27 ptr unsafe.Pointer, create, ref js.Ref) js.Ref 28 29 //go:wasmimport plat/js/webext/crashreportprivate has_ReportError 30 //go:noescape 31 func HasFuncReportError() js.Ref 32 33 //go:wasmimport plat/js/webext/crashreportprivate func_ReportError 34 //go:noescape 35 func FuncReportError(fn unsafe.Pointer) 36 37 //go:wasmimport plat/js/webext/crashreportprivate call_ReportError 38 //go:noescape 39 func CallReportError( 40 retPtr unsafe.Pointer, 41 info unsafe.Pointer) 42 43 //go:wasmimport plat/js/webext/crashreportprivate try_ReportError 44 //go:noescape 45 func TryReportError( 46 retPtr unsafe.Pointer, errPtr unsafe.Pointer, 47 info unsafe.Pointer) (ok js.Ref)