Esempio n. 1
0
 void SetASCII(const char *src) {
   SetASCII(src, src + StringLength(src));
 }
Esempio n. 2
0
 void SetASCII(const TCHAR *src) {
   SetASCII(src, src + StringLength(src));
 }
Esempio n. 3
0
 void SetASCII(const char *src) {
   SetASCII(src, src + strlen(src));
 }