const (
version = 1
dl_ext = get_shared_library_extension()
)
const (
rtld_now = C.RTLD_NOW
rtld_lazy = C.RTLD_LAZY
)
fn close(handle voidptr) bool
close frees a given shared object.
fn open(filename string, flags int) voidptr
fn sym(handle voidptr, symbol string) voidptr
sym returns an address of a symbol in a given shared object.