diff options
| author | Mark Rowe <mark@vector35.com> | 2026-05-27 13:23:36 -0700 |
|---|---|---|
| committer | Mark Rowe <mark@vector35.com> | 2026-05-28 15:08:21 -0700 |
| commit | c3cdbb068e09f311e2a3d154327ba9640ce2f0d7 (patch) | |
| tree | 4c5adafa767a3c84ce87453330888777a80775c6 | |
| parent | 02e67da266d21e106d0b9900a2a98dbf8d045ad2 (diff) | |
Remove unused path manipulation functions from C API
| -rw-r--r-- | binaryninjacore.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index 178312b2..607c2ef4 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -8287,17 +8287,12 @@ extern "C" BINARYNINJACOREAPI bool BNDeleteDirectory(const char* path); BINARYNINJACOREAPI bool BNCreateDirectory(const char* path, bool createSubdirectories); BINARYNINJACOREAPI bool BNPathExists(const char* path); - BINARYNINJACOREAPI char* BNGetParentPath(const char* path); BINARYNINJACOREAPI bool BNIsPathDirectory(const char* path); BINARYNINJACOREAPI bool BNIsPathRegularFile(const char* path); BINARYNINJACOREAPI bool BNFileSize(const char* path, uint64_t* size); BINARYNINJACOREAPI bool BNRenameFile(const char* source, const char* dest); BINARYNINJACOREAPI bool BNCopyFile(const char* source, const char* dest); - BINARYNINJACOREAPI char* BNGetFileName(const char* path); - BINARYNINJACOREAPI char* BNGetFileExtension(const char* path); BINARYNINJACOREAPI char** BNGetFilePathsInDirectory(const char* path, size_t* count); - BINARYNINJACOREAPI char* BNAppendPath(const char* path, const char* part); - BINARYNINJACOREAPI void BNFreePath(char* path); BINARYNINJACOREAPI char* BNGetSystemCacheDirectory(); // Settings APIs |
