xref: /MusicPlayer2/scintilla/win32/HanjaDic.h (revision 443d2d2511be730d1b1dd3181942b7fa6539aa1a)
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 <[email protected]>
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