milsko/include/Mw/Abstract/CharSet.h
Nishi 8fc51bd1e4
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
unicode fix
2026-09-13 12:21:05 +09:00

22 lines
347 B
C

/*!
* @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
MWDECL char* MWAPI MwACPTextToUTF8Text(const char* input);
MWDECL char* MWAPI MwUTF8TextToACPText(const char* input);
#ifdef __cplusplus
}
#endif
#endif