github.com/primecitizens/pcz/std@v0.2.1/plat/js/webext/systemlog/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/systemlog store_MessageOptions
    20  //go:noescape
    21  func MessageOptionsJSStore(
    22  	ptr unsafe.Pointer, ref js.Ref)
    23  
    24  //go:wasmimport plat/js/webext/systemlog load_MessageOptions
    25  //go:noescape
    26  func MessageOptionsJSLoad(
    27  	ptr unsafe.Pointer, create, ref js.Ref) js.Ref
    28  
    29  //go:wasmimport plat/js/webext/systemlog has_Add
    30  //go:noescape
    31  func HasFuncAdd() js.Ref
    32  
    33  //go:wasmimport plat/js/webext/systemlog func_Add
    34  //go:noescape
    35  func FuncAdd(fn unsafe.Pointer)
    36  
    37  //go:wasmimport plat/js/webext/systemlog call_Add
    38  //go:noescape
    39  func CallAdd(
    40  	retPtr unsafe.Pointer,
    41  	options unsafe.Pointer)
    42  
    43  //go:wasmimport plat/js/webext/systemlog try_Add
    44  //go:noescape
    45  func TryAdd(
    46  	retPtr unsafe.Pointer, errPtr unsafe.Pointer,
    47  	options unsafe.Pointer) (ok js.Ref)