Skip to content

Instantly share code, notes, and snippets.

@codehz

codehz/a.nim Secret

Created December 24, 2020 10:59
Show Gist options
  • Save codehz/18dfd092a5f318bbf13472f046da6661 to your computer and use it in GitHub Desktop.
Save codehz/18dfd092a5f318bbf13472f046da6661 to your computer and use it in GitHub Desktop.
proc create(): ref RootObj {.dynlib: "b.dll", importc.}
block:
var x = create()
echo cast[int](x)
echo "here"
GC_fullCollect()
type X = object of RootObj
proc `=destroy`(x: var X) =
echo "destroy"
proc create(): ref RootObj {.dynlib, exportc.} =
new X
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment