Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 200 Bytes

15_loading_dll.md

File metadata and controls

9 lines (7 loc) · 200 Bytes

Loading shared objects (DLLs)

You can load DLLs (.so files on linux/other and .dll in windows) using function load_so.

$dll = load_so('/path/to/file.so')

$dll->some_func()
# ...