Handbook
Glossary
open-dll ( path -- dll dll-error/f )
Vocabulary
alien
.
libraries
Inputs
path
an
object
Outputs
dll
an
object
dll-error/f
an
object
Definition
USING:
kernel
;
IN:
alien.libraries
:
open-dll
( path -- dll dll-error/f )
[
dlopen
dup
dll-valid?
[
f
]
[
dlerror
]
if
]
[
f
f
]
if*
;