milsko/include/Mw/Abstract/CharSet.h
Nishi 5ff982d106
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
add ui charset converter and stuff
2026-04-23 14:59:35 +09:00

22 lines
331 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 MwACPToUTF8(const char* input);
MWDECL char* MWAPI MwUTF8ToACP(const char* input);
#ifdef __cplusplus
}
#endif
#endif