mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
14 lines
258 B
C++
14 lines
258 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class UTF8Processor
|
|
{
|
|
public:
|
|
static bool DecodeToMacRomanPascalStr(const uint8_t *inChars, size_t inSize, uint8_t *outChars, size_t maxOutSize, size_t &outSize);
|
|
};
|
|
}
|