Source code of Windows XP (NT5)
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.

21 lines
796 B

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (C) 1997, Microsoft Corporation. All Rights Reserved.
  4. //
  5. // UniToInvInt.h :
  6. //
  7. // Owner : ChaeSeong Lim, HET MSCH RND (e-mail:[email protected])
  8. //
  9. // History : 1996/April
  10. //
  11. // Convert unicode hangul to reversed internal format.
  12. /////////////////////////////////////////////////////////////////////////////
  13. #ifndef __UNITOINVINT_H__
  14. #define __UNITOINVINT_H__
  15. // Convert from Unicode Hangul to Inversed internal code decomposed by jaso.
  16. BOOL UniToInvInternal(LPCWSTR lpUniStr, LPSTR lpIntStr, int BufLength);
  17. BOOL UniToInternal(LPCWSTR lpUniStr, LPSTR lpIntStr, int BufLength);
  18. BOOL InternalToUni(LPCSTR lpInternal, LPWSTR lpUniStr, int BufLength);
  19. #endif // !__UNITOINVINT_H__