mirror of https://github.com/tongzx/nt5src
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
421 B
23 lines
421 B
// 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
|