示例#1
0
 void SetASCII(const char *src) {
   SetASCII(src, src + StringLength(src));
 }
示例#2
0
 void SetASCII(const TCHAR *src) {
   SetASCII(src, src + StringLength(src));
 }
示例#3
0
 void SetASCII(const char *src) {
   SetASCII(src, src + strlen(src));
 }