milsko/include/Mw/Abstract/CharSet.h

22 lines
347 B
C
Raw Permalink Normal View History

2026-04-23 14:59:35 +09:00
/*!
* @file Mw/Abstract/CharSet.h
* @brief CharSet
*/
#ifndef __MW_ABSTRACT_CHARSET_H__
#define __MW_ABSTRACT_CHARSET_H__
#include <Mw/MachDep.h>
#ifdef __cplusplus
extern "C" {
#endif
2026-09-13 12:21:05 +09:00
MWDECL char* MWAPI MwACPTextToUTF8Text(const char* input);
2026-04-23 14:59:35 +09:00
2026-09-13 12:21:05 +09:00
MWDECL char* MWAPI MwUTF8TextToACPText(const char* input);
2026-04-23 14:59:35 +09:00
#ifdef __cplusplus
}
#endif
#endif