forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Load extension
angerangel edited this page Mar 19, 2013
·
1 revision
LOAD-EXTENSION name /dispatch function
Low level extension module loader (for DLLs).
LOAD-EXTENSION is a native value.
- name -- DLL file or UTF-8 source (file! binary!)
-
/dispatch -- Specify native command dispatch (from hosted extensions)
- function -- Command dispatcher (native) (handle!)
#SOURCE
load-extension: make native! [ [
"Low level extension module loader (for DLLs)."
name [file! binary!] "DLL file or UTF-8 source"
/dispatch {Specify native command dispatch (from hosted extensions)}
function [handle!] "Command dispatcher (native)"
] ]