summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2026-02-17 20:11:39 -0800
committerMason Reed <35282038+emesare@users.noreply.github.com>2026-02-23 00:09:44 -0800
commitb765ffd736ecbfbb7c19b7e166a021ac46a9eeb8 (patch)
tree674f5aaa6a8541e29a407511f1db37e07074e436 /binaryninjacore.h
parentc980b77666bba9e4480c44de72cc8de0ca10c8e4 (diff)
[BNTL] Allow decompressing standalone TypeLibrary objects
Previously you must have written the type library to disk
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index d985b06f..94456c2f 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -6816,7 +6816,7 @@ extern "C"
BINARYNINJACOREAPI BNTypeLibrary* BNNewTypeLibraryReference(BNTypeLibrary* lib);
BINARYNINJACOREAPI BNTypeLibrary* BNDuplicateTypeLibrary(BNTypeLibrary* lib);
BINARYNINJACOREAPI BNTypeLibrary* BNLoadTypeLibraryFromFile(const char* path);
- BINARYNINJACOREAPI bool BNTypeLibraryDecompressToFile(const char* file, const char* output);
+ BINARYNINJACOREAPI bool BNTypeLibraryDecompressToFile(BNTypeLibrary* lib, const char* output);
BINARYNINJACOREAPI void BNFreeTypeLibrary(BNTypeLibrary* lib);
BINARYNINJACOREAPI BNTypeLibrary* BNLookupTypeLibraryByName(BNArchitecture* arch, const char* name);