17 lines
562 B
C++
17 lines
562 B
C++
|
/***
|
||
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: ConvertInternal.hpp
|
||
|
Date: 2021-8-19
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#pragma once
|
||
|
|
||
|
namespace Aurora::Locale::Encoding
|
||
|
{
|
||
|
template<typename charout_t>
|
||
|
void FlipEndianness(AuUInt32 *out, AuUInt32 count, bool isEncodingLE);
|
||
|
|
||
|
AuStreamReadWrittenPair_t STLCPToUTF8(ECodePage page, const void *in, AuUInt32 length, void *utf8, AuUInt32 utf8Max);
|
||
|
AuStreamReadWrittenPair_t STLUTF8ToCp(ECodePage page, const void *utf8, AuUInt32 utf8Length, void *cp, AuUInt32 cpLen);
|
||
|
}
|