AuroraRuntime/Include/Aurora/Locale/ECodePage.hpp

29 lines
471 B
C++
Raw Normal View History

2021-09-06 10:58:08 +00:00
/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: ECodePage.hpp
Date: 2021-8-20
Author: Reece
***/
#pragma once
namespace Aurora::Locale
{
enum class ECodePage
{
eUTF32,
eUTF32BE,
eUTF16,
eUTF16BE,
eUTF8,
eUTF7,
e18030,
e2312,
eGBK,
eSJIS,
eLatin1,
eSysUnk,
eUnsupported,
eMax = eUnsupported
};
}