mirror of
https://github.com/holub/mame
synced 2025-05-29 00:53:09 +03:00
43 lines
1.0 KiB
C
43 lines
1.0 KiB
C
//============================================================
|
|
//
|
|
// strconv.h - SDL string conversion
|
|
//
|
|
// Copyright (c) 1996-2007, Nicola Salmoria and the MAME Team.
|
|
// Visit http://mamedev.org for licensing and usage restrictions.
|
|
//
|
|
//============================================================
|
|
|
|
#ifndef __SDLSTRCONV__
|
|
#define __SDLSTRCONV__
|
|
|
|
#include "osdcore.h"
|
|
|
|
|
|
|
|
//============================================================
|
|
// FUNCTION PROTOTYPES
|
|
//============================================================
|
|
|
|
#ifdef SDLMAME_WIN32
|
|
|
|
// 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 // __SDLSTRCONV__
|
|
|