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.

29 lines
969 B

  1. /****************************************************************************
  2. Lookup.h : declarations of various lookup functions
  3. Copyright 2000 Microsoft Corp.
  4. History:
  5. 02-AUG-2000 bhshin remove unused method for Hand Writing team
  6. 17-MAY-2000 bhshin remove unused method for CICERO
  7. 02-FEB-2000 bhshin created
  8. ****************************************************************************/
  9. #ifndef _LOOKUP_H
  10. #define _LOOKUP_H
  11. #include "Lex.h" // MAPFILE
  12. //----------------------------------------------------------------------------
  13. // structures for lookup lexicon
  14. //----------------------------------------------------------------------------
  15. int LookupHanjaIndex(MAPFILE *pLexMap, WCHAR wchHanja);
  16. BOOL LookupHangulOfHanja(MAPFILE *pLexMap, LPCWSTR lpcwszHanja, int cchHanja,
  17. LPWSTR wzHangul, int cchHangul);
  18. BOOL LookupMeaning(MAPFILE *pLexMap, WCHAR wchHanja, WCHAR *wzMean, int cchMean);
  19. #endif