summaryrefslogtreecommitdiff
path: root/rust/src
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src')
-rw-r--r--rust/src/types/library.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/rust/src/types/library.rs b/rust/src/types/library.rs
index ab69e76e..8743b896 100644
--- a/rust/src/types/library.rs
+++ b/rust/src/types/library.rs
@@ -217,6 +217,11 @@ impl TypeLibrary {
unsafe { BNFinalizeTypeLibrary(self.as_raw()) }
}
+ /// Make a created or loaded Type Library available for Platforms to use when loading binaries.
+ pub fn register(&self) {
+ unsafe { BNRegisterTypeLibrary(self.as_raw()) }
+ }
+
/// Retrieves the metadata associated with the given key stored in the type library.
pub fn query_metadata(&self, key: &str) -> Option<Ref<Metadata>> {
let key = key.to_cstr();