summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--binaryninjacore.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index 425a8d3c..c46f98c1 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -4877,6 +4877,11 @@ __attribute__ ((format (printf, 1, 2)))
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 const char* BNGetFileName(const char* path);
+ BINARYNINJACOREAPI const 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);
// Settings APIs
BINARYNINJACOREAPI BNSettings* BNCreateSettings(const char* schemaId);