2025-11-25 05:31:58 +09:00
|
|
|
#ifndef __MDE_CORE_FILE_H__
|
|
|
|
|
#define __MDE_CORE_FILE_H__
|
2025-11-16 11:24:56 +09:00
|
|
|
|
|
|
|
|
#include <MDE/MachDep.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void MDEFileCopy(const char* src, const char* dst);
|
|
|
|
|
|
2025-11-23 17:23:35 +09:00
|
|
|
char* MDEFileAbsolutePath(const char* path);
|
|
|
|
|
|
|
|
|
|
char* MDEFileOptimizeAbsolutePath(const char* path);
|
|
|
|
|
|
2025-11-16 11:24:56 +09:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|