2015-06-07 23:19:26 +02:00
|
|
|
// Scintilla source code edit control
|
|
|
|
/** @file HanjaDic.h
|
|
|
|
** Korean Hanja Dictionary
|
|
|
|
** Convert between Korean Hanja and Hangul by COM interface.
|
|
|
|
**/
|
|
|
|
// Copyright 2015 by Neil Hodgson <neilh@scintilla.org>
|
|
|
|
// The License.txt file describes the conditions under which this software may be distributed.
|
|
|
|
|
|
|
|
#ifndef HANJADIC_H
|
|
|
|
#define HANJADIC_H
|
|
|
|
|
2022-01-05 00:07:50 +01:00
|
|
|
namespace Scintilla::Internal {
|
2015-06-07 23:19:26 +02:00
|
|
|
|
|
|
|
namespace HanjaDict {
|
|
|
|
|
2022-01-05 00:07:50 +01:00
|
|
|
bool GetHangulOfHanja(std::wstring &inout) noexcept;
|
2015-06-07 23:19:26 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|