dlopen ( path -- dll )
Factor handbook » C library interface » DLL handles

Next:dlsym ( name dll -- alien )


Vocabulary
alien.libraries

Inputs
patha pathname string


Outputs
dlla DLL handle


Word description
Opens a native library and outputs a handle which may be passed to dlsym or dlclose.

Errors
Throws an error if the library could not be found, or if loading fails for some other reason.

Notes
This is the low-level facility used to implement add-library. Use the latter instead.

Definition