Lines Matching refs:TCHAR
2780 # include <tchar.h>
2784 TCHAR *tfrom=NULL,*tto;
2788 if (sizeof(TCHAR) == 1)
2790 tfrom = (TCHAR *)from;
2791 tto = (TCHAR *)to;
2796 tfrom = (TCHAR *)malloc(sizeof(TCHAR)*(flen+tlen));
2802 for (i=0;i<flen;i++) tfrom[i]=(TCHAR)from[i];
2806 for (i=0;i<tlen;i++) tto[i] =(TCHAR)to[i];
2826 if (tfrom!=NULL && tfrom!=(TCHAR *)from) free(tfrom);