1 // Scintilla source code edit control
2 /** @file HanjaDic.h
3  ** Korean Hanja Dictionary
4  ** Convert between Korean Hanja and Hangul by COM interface.
5  **/
6 // Copyright 2015 by Neil Hodgson <neilh@scintilla.org>
7 // The License.txt file describes the conditions under which this software may be distributed.
8 
9 #ifndef HANJADIC_H
10 #define HANJADIC_H
11 
12 namespace Scintilla {
13 
14 namespace HanjaDict {
15 
16 int GetHangulOfHanja(wchar_t *inout);
17 
18 }
19 
20 }
21 
22 #endif
23