Home | History | Annotate | Download | only in Common

Lines Matching full:wchar_t

26 inline wchar_t* MyStringGetNextCharPointer(wchar_t *p)

28 inline const wchar_t* MyStringGetNextCharPointer(const wchar_t *p)
30 inline wchar_t* MyStringGetPrevCharPointer(const wchar_t *, wchar_t *p)
32 inline const wchar_t* MyStringGetPrevCharPointer(const wchar_t *, const wchar_t *p)
52 inline wchar_t MyCharUpper(wchar_t c)
53 { return (wchar_t)(unsigned int)(UINT_PTR)CharUpperW((LPWSTR)(UINT_PTR)(unsigned int)c); }
55 wchar_t MyCharUpper(wchar_t c);
59 inline wchar_t MyCharLower(wchar_t c)
60 { return (wchar_t)(unsigned int)(UINT_PTR)CharLowerW((LPWSTR)(UINT_PTR)(unsigned int)c); }
62 wchar_t MyCharLower(wchar_t c);
67 { return (char)MyCharLower((wchar_t)c); }
74 inline wchar_t * MyStringUpper(wchar_t *s) { return CharUpperW(s); }
76 wchar_t * MyStringUpper(wchar_t *s);
81 inline wchar_t * MyStringLower(wchar_t *s) { return CharLowerW(s); }
83 wchar_t * MyStringLower(wchar_t *s);
87 wchar_t MyCharUpper(wchar_t c);
98 int MyStringCollate(const wchar_t *s1, const wchar_t *s2);
99 int MyStringCollateNoCase(const wchar_t *s1, const wchar_t *s2);
103 int MyStringCompare(const wchar_t *s1, const wchar_t *s2);
106 int MyStringCompareNoCase(const wchar_t *s1, const wchar_t *s2);
612 typedef CStringBase<wchar_t> UString;