2020-12-15 17:22:07 +01:00
|
|
|
module main
|
|
|
|
|
|
|
|
import os
|
|
|
|
import dl
|
|
|
|
|
|
|
|
type FNAdder = fn (int, int) int
|
|
|
|
|
|
|
|
fn main() {
|
2021-02-23 08:46:28 +01:00
|
|
|
library_file_path := os.join_path(os.getwd(), dl.get_libname('library'))
|
2021-03-24 10:47:04 +01:00
|
|
|
handle := dl.open_opt(library_file_path, dl.rtld_lazy) ?
|
2020-12-15 17:22:07 +01:00
|
|
|
eprintln('handle: ${ptr_str(handle)}')
|
2021-03-19 10:14:52 +01:00
|
|
|
mut f := FNAdder(0)
|
2021-03-24 10:47:04 +01:00
|
|
|
f = dl.sym_opt(handle, 'add_1') ?
|
2020-12-15 17:22:07 +01:00
|
|
|
eprintln('f: ${ptr_str(f)}')
|
|
|
|
res := f(1, 2)
|
|
|
|
eprintln('res: $res')
|
|
|
|
}
|