Home | History | Annotate | Download | only in apps

Lines Matching refs:tchar

2784 # include <tchar.h>
2788 TCHAR *tfrom=NULL,*tto;
2792 if (sizeof(TCHAR) == 1)
2794 tfrom = (TCHAR *)from;
2795 tto = (TCHAR *)to;
2800 tfrom = (TCHAR *)malloc(sizeof(TCHAR)*(flen+tlen));
2806 for (i=0;i<flen;i++) tfrom[i]=(TCHAR)from[i];
2810 for (i=0;i<tlen;i++) tto[i] =(TCHAR)to[i];
2830 if (tfrom!=NULL && tfrom!=(TCHAR *)from) free(tfrom);