blob: 5de23d0b89b665d428a083f08f80e601ecae4422 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
//============================================================
//
// strconv.h - String conversion
//
//============================================================
#ifndef __OSD_STRCONV__
#define __OSD_STRCONV__
#include "osdcore.h"
//============================================================
// FUNCTION PROTOTYPES
//============================================================
#if defined(SDLMAME_WIN32) || defined(OSD_WINDOWS)
#if defined(SDLMAME_WIN32)
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif
// the result of these functions has to be released with osd_free()
CHAR *astring_from_utf8(const char *s);
char *utf8_from_astring(const CHAR *s);
WCHAR *wstring_from_utf8(const char *s);
char *utf8_from_wstring(const WCHAR *s);
#ifdef UNICODE
#define tstring_from_utf8 wstring_from_utf8
#define utf8_from_tstring utf8_from_wstring
#else // !UNICODE
#define tstring_from_utf8 astring_from_utf8
#define utf8_from_tstring utf8_from_astring
#endif // UNICODE
#endif //SDLMAME_WIN32
#endif // __OSD_STRCONV__
|