Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
684 B

  1. /****************************************************************************
  2. HANJA.H
  3. Owner: cslim
  4. Copyright (c) 1997-1999 Microsoft Corporation
  5. Hanja conversion and dictionary lookup functions. Dictionary index is
  6. stored as globally shared memory.
  7. History:
  8. 14-JUL-1999 cslim Copied from IME98 source tree
  9. *****************************************************************************/
  10. #if !defined (_HANJA_H__INCLUDED_)
  11. #define _HANJA_H__INCLUDED_
  12. #include "LexHeader.h"
  13. extern BOOL EnsureHanjaLexLoaded();
  14. extern BOOL CloseLex();
  15. BOOL GetMeaningAndProunc(WCHAR wch, LPWSTR lpwstrTip, INT cchMax);
  16. #endif // !defined (_HANJA_H__INCLUDED_)