diff options
| author | Alexander Taylor <alex@vector35.com> | 2025-04-16 10:21:22 -0400 |
|---|---|---|
| committer | Alexander Taylor <alex@vector35.com> | 2025-04-16 10:21:22 -0400 |
| commit | ca696ab4a79902d0448135f6fca3769f0576e39d (patch) | |
| tree | 3aabbba81e4968c03289c5d10eea5340f15597ce /view/kernelcache/api/kernelcachecore.h | |
| parent | 77c3bf786be64267cb7f45d9d0f118fcbf6d8aea (diff) | |
Add loaded column for kernel cache view.
Required adding an API to determine if an image is loaded.
Diffstat (limited to 'view/kernelcache/api/kernelcachecore.h')
| -rw-r--r-- | view/kernelcache/api/kernelcachecore.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/view/kernelcache/api/kernelcachecore.h b/view/kernelcache/api/kernelcachecore.h index d425bf15..be274a6c 100644 --- a/view/kernelcache/api/kernelcachecore.h +++ b/view/kernelcache/api/kernelcachecore.h @@ -109,6 +109,8 @@ extern "C" KERNELCACHE_FFI_API bool BNKCViewLoadImageWithInstallName(BNKernelCache* cache, char* name); KERNELCACHE_FFI_API bool BNKCViewLoadImageContainingAddress(BNKernelCache* cache, uint64_t address); + KERNELCACHE_FFI_API bool BNKCViewIsImageLoaded(BNKernelCache* cache, uint64_t address); + KERNELCACHE_FFI_API char* BNKCViewGetNameForAddress(BNKernelCache* cache, uint64_t address); KERNELCACHE_FFI_API char* BNKCViewGetImageNameForAddress(BNKernelCache* cache, uint64_t address); |
