sharedlib ~master (2022-06-01T11:28:35.4814947)
Dub
Repo
SharedLibrary
sharedlib
This is a wrapper of UNIX-specified dynamic loading. See
man 3 dlopen
.
version(Posix)
struct
SharedLibrary {
void
*
handle
;
this
(string filename, int flags);
~this
();
void
close
();
auto
get
(string symbolName);
void
*
getLoadedAddr
();
}
Constructors
this
this
(string filename, int flags)
Destructor
~this
~this
()
Undocumented in source.
Members
Functions
close
void
close
()
get
auto
get
(string symbolName)
getLoadedAddr
void
*
getLoadedAddr
()
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
handle
void
*
handle
;
Undocumented in source.
Meta
Source
See Implementation
sharedlib
manifest constants
RTLD_GLOBAL
RTLD_LAZY
RTLD_LOCAL
RTLD_NOW
structs
SharedLibrary
This is a wrapper of UNIX-specified dynamic loading. See man 3 dlopen.