mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-28 09:14:58 +01:00
24 lines
724 B
C
24 lines
724 B
C
/*****************************************************************************
|
|
* Copyright (c) 2014-2019 OpenRCT2 developers
|
|
*
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "../common.h"
|
|
|
|
struct encoding_convert_entry
|
|
{
|
|
uint16_t code;
|
|
uint32_t unicode;
|
|
};
|
|
|
|
extern const encoding_convert_entry RCT2ToUnicodeTable[];
|
|
|
|
wchar_t encoding_convert_rct2_to_unicode(wchar_t rct2str);
|
|
uint32_t encoding_convert_unicode_to_rct2(uint32_t unicode);
|