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.

22 lines
421 B

  1. // foldchar.h
  2. // Angshuman Guha
  3. // aguha
  4. // July 24, 2000
  5. #ifndef _INC_FOLDCHAR_H
  6. #define _INC_FOLDCHAR_H
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. BOOL IsValidStringLatin(wchar_t *wsz, char **pszErrorMsg);
  11. int FoldStringLatin(wchar_t *wszSrc, wchar_t *wszDst);
  12. BOOL IsValidStringEastAsian(wchar_t *wsz, char **pszErrorMsg);
  13. int FoldStringEastAsian(wchar_t *wszSrc, wchar_t *wszDst);
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif