cl: c.Func (llgo.funcAddr); demo: cppintf (how to use c++ interface)

This commit is contained in:
xushiwei
2024-06-21 23:44:56 +08:00
parent be0ce57375
commit bfa4e08a4e
11 changed files with 149 additions and 35 deletions

View File

@@ -1,10 +1,12 @@
package main
import (
"github.com/goplus/llgo/c"
"github.com/goplus/llgo/c/math/cmplx"
)
func f(c, z complex64) {
func f(c, z complex64, addr c.Pointer) {
println("addr:", addr)
println("abs(3+4i):", cmplx.Absf(c))
println("real(3+4i):", real(z))
println("imag(3+4i):", imag(z))
@@ -14,6 +16,6 @@ func main() {
re := float32(3.0)
im := float32(4.0)
z := complex64(3 + 4i)
c := complex(re, im)
f(c, z)
x := complex(re, im)
f(x, z, c.Func(f))
}