mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
Add unpacktool
This commit is contained in:
@@ -49,7 +49,7 @@ static const uint16_t mac_roman_2uni[128] = {
|
||||
};
|
||||
|
||||
namespace MacRoman
|
||||
{
|
||||
{
|
||||
uint16_t ToUnicode(uint8_t character)
|
||||
{
|
||||
if (character < 0x80)
|
||||
@@ -57,7 +57,7 @@ namespace MacRoman
|
||||
else
|
||||
return mac_roman_2uni[character - 0x80];
|
||||
}
|
||||
|
||||
|
||||
bool FromUnicode(uint8_t &outChar, uint16_t codePoint)
|
||||
{
|
||||
if (codePoint < 0x80)
|
||||
|
Reference in New Issue
Block a user