First
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
|
||||
#include <EASTL/fixed_string.h>
|
||||
#include "AbsPath.h"
|
||||
|
||||
namespace fs
|
||||
{
|
||||
namespace native_utils
|
||||
{
|
||||
|
||||
bool validateCaseSensitiveFilename(const AbsPath& filePath) noexcept;
|
||||
bool validateCaseSensitiveFolder(const AbsPath& folderPath) noexcept;
|
||||
|
||||
typedef eastl::fixed_string<wchar_t, 1024> wstring_t;
|
||||
typedef eastl::fixed_string<char, 1024> string_t;
|
||||
|
||||
wstring_t utf8To16(tl::span<const char> str) noexcept;
|
||||
string_t utf16To8(tl::span<const wchar_t> str) noexcept;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user