2021-06-27 21:25:29 +00:00
|
|
|
/***
|
|
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
|
2021-09-06 10:58:08 +00:00
|
|
|
File: EncoderIConv.hpp
|
|
|
|
Date: 2021-8-19
|
2021-06-27 21:25:29 +00:00
|
|
|
Author: Reece
|
|
|
|
***/
|
|
|
|
#pragma once
|
|
|
|
|
2021-09-06 10:58:08 +00:00
|
|
|
namespace Aurora::Locale::Encoding
|
|
|
|
{
|
2022-04-11 18:56:14 +00:00
|
|
|
AuStreamReadWrittenPair_t IConvCPToUTF8(ECodePage page, const void *in, AuUInt length, void *utf8, AuUInt32 utf8Max);
|
|
|
|
AuStreamReadWrittenPair_t IConvUTF8ToCp(ECodePage page, const void *utf8, AuUInt32 utf8Length, void *cp, AuUInt32 cpLen);
|
2021-09-06 10:58:08 +00:00
|
|
|
|
2022-04-11 18:56:14 +00:00
|
|
|
void InitIConv();
|
2021-09-06 10:58:08 +00:00
|
|
|
}
|