From 3520262824637979418554656607433424896809 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Wed, 4 Mar 2026 15:54:50 -0500 Subject: Add TypeLibrary::Register, to allow loading type libraries from script --- rust/src/types/library.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'rust/src') 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> { let key = key.to_cstr(); -- cgit v1.3.1