yuqucheng fa7c338ea5 init
2026-06-23 09:54:30 +08:00

26 lines
513 B
C++

#include "os/c-api/il2cpp-config-platforms.h"
#if !RUNTIME_TINY
#include "os/Path.h"
#include "utils/PathUtils.h"
#include "Allocator.h"
extern "C"
{
const char* UnityPalGetTempPath()
{
return Allocator::CopyToAllocatedStringBuffer(il2cpp::os::Path::GetTempPath());
}
int32_t UnityPalIsAbsolutePath(const char* path)
{
if (path == NULL)
return 0;
std::string path_string = path;
return il2cpp::os::Path::IsAbsolute(path_string);
}
}
#endif