AuroraRuntime/Include/Aurora/IO/FS/Resources.hpp
2021-06-27 22:25:29 +01:00

25 lines
566 B
C++

/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Resources.hpp
Date: 2021-6-10
Author: Reece
***/
#pragma once
namespace Aurora::IO::FS
{
/**
Suffixes a global read/writable path with nameSpace and a splitter
*/
AUKN_SYM bool GetSystemDomain(AuString& path);
/**
Suffixes a global read/writable path with within a home/sandbox directory
*/
AUKN_SYM bool GetProfileDomain(AuString& path);
AUKN_SYM bool GetSystemResourcePath(const AuString& fileName, AuString& path);
}