windows-nt/Source/XPSP1/NT/drivers/tpg/hwx/common/inc/foldchar.h
2020-09-26 16:20:57 +08:00

23 lines
421 B
C

// foldchar.h
// Angshuman Guha
// aguha
// July 24, 2000
#ifndef _INC_FOLDCHAR_H
#define _INC_FOLDCHAR_H
#ifdef __cplusplus
extern "C" {
#endif
BOOL IsValidStringLatin(wchar_t *wsz, char **pszErrorMsg);
int FoldStringLatin(wchar_t *wszSrc, wchar_t *wszDst);
BOOL IsValidStringEastAsian(wchar_t *wsz, char **pszErrorMsg);
int FoldStringEastAsian(wchar_t *wszSrc, wchar_t *wszDst);
#ifdef __cplusplus
}
#endif
#endif