diff options
| author | WeiN76LQh <WeiN76LQh@github.com> | 2024-11-25 19:54:44 +0000 |
|---|---|---|
| committer | kat <kat@vector35.com> | 2024-12-26 10:42:54 -0500 |
| commit | 2cce2ab6c79879a4d64df1fc7375e2c871565f8f (patch) | |
| tree | 9e6c5273eff573f28b99fd59f98472582df2d639 /view/sharedcache/api/sharedcacheapi.h | |
| parent | 934104743a0e3071606277692822be4b853288ac (diff) | |
[SharedCache] Add the ability to skip Objective-C processing when loading a library
This is useful when batch loading libraries to avoid extra processing (once the next commit has landed).
Diffstat (limited to 'view/sharedcache/api/sharedcacheapi.h')
| -rw-r--r-- | view/sharedcache/api/sharedcacheapi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/sharedcache/api/sharedcacheapi.h b/view/sharedcache/api/sharedcacheapi.h index 7b049bc4..f556b1a8 100644 --- a/view/sharedcache/api/sharedcacheapi.h +++ b/view/sharedcache/api/sharedcacheapi.h @@ -257,9 +257,9 @@ namespace SharedCacheAPI { static BNDSCViewLoadProgress GetLoadProgress(Ref<BinaryView> view); static uint64_t FastGetBackingCacheCount(Ref<BinaryView> view); - bool LoadImageWithInstallName(std::string installName); + bool LoadImageWithInstallName(std::string installName, bool skipObjC = false); bool LoadSectionAtAddress(uint64_t addr); - bool LoadImageContainingAddress(uint64_t addr); + bool LoadImageContainingAddress(uint64_t addr, bool skipObjC = false); std::vector<std::string> GetAvailableImages(); std::vector<DSCSymbol> LoadAllSymbolsAndWait(); |
