LPCTSTR 相当于 const char *
LPTSTR  相当于 char *LPTSTR lpStr = new char [SIZE];
...
...
delete lpStr;or:LPTSTR lpStr = malloc(SIZE);
...
...
free(lpStr);