mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
b083673982
This includes updates to authenticator, cubeb-coreaudio, metal, gfx-backend-vulkan, gfx-backend-metal, freetype libloading is duplicated because of ash Differential Revision: https://phabricator.services.mozilla.com/D84688 |
||
---|---|---|
.. | ||
src | ||
tests | ||
.cargo-checksum.json | ||
appveyor.yml | ||
build.rs | ||
Cargo.toml | ||
LICENSE | ||
README.mkd |
libloading
A memory-safer wrapper around system dynamic library loading primitives. The most important safety
guarantee by this library is prevention of dangling-Symbol
s that may occur after a Library
is
unloaded.
Using this library allows loading dynamic libraries (also known as shared libraries) as well as use functions and static variables these libraries contain.
libloading is distributed under ISC (MIT-like) license.