add more methods
This commit is contained in:
parent
cd1efe40ad
commit
90953b85d1
6 changed files with 108 additions and 0 deletions
|
|
@ -9,6 +9,10 @@ extern "C" {
|
|||
|
||||
void MDEDirectoryScan(const char* path, void (*call)(const char* name, int dir, int symlink, void* user), void* user);
|
||||
|
||||
void MDEDirectoryCreate(const char* path, int mode);
|
||||
|
||||
char* MDEDirectoryCurrentPath(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -9,6 +9,10 @@ extern "C" {
|
|||
|
||||
void MDEFileCopy(const char* src, const char* dst);
|
||||
|
||||
char* MDEFileAbsolutePath(const char* path);
|
||||
|
||||
char* MDEFileOptimizeAbsolutePath(const char* path);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -9,6 +9,8 @@ extern "C" {
|
|||
|
||||
char* MDEStringDuplicate(const char* src);
|
||||
|
||||
char* MDEStringConcatenate(const char* str1, const char* str2);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue