2025-11-25 05:31:58 +09:00
|
|
|
#ifndef __MDE_CORE_DIRECTORY_H__
|
|
|
|
|
#define __MDE_CORE_DIRECTORY_H__
|
2025-11-16 22:39:57 +09:00
|
|
|
|
|
|
|
|
#include <MDE/MachDep.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-11-18 17:51:38 +09:00
|
|
|
void MDEDirectoryScan(const char* path, void (*call)(const char* name, int dir, int symlink, void* user), void* user);
|
2025-11-16 22:39:57 +09:00
|
|
|
|
2025-11-23 17:23:35 +09:00
|
|
|
void MDEDirectoryCreate(const char* path, int mode);
|
|
|
|
|
|
|
|
|
|
char* MDEDirectoryCurrentPath(void);
|
|
|
|
|
|
2025-11-25 11:08:13 +09:00
|
|
|
char* MDEDirectoryConfigPath(void);
|
|
|
|
|
|
2025-11-16 22:39:57 +09:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|