LPTSTR lstrcat(lpszString1, lpszString2) | |||||
LPTSTR lpszString1; | /* address of buffer for concatenated strings | */ | |||
LPCTSTR lpszString2; | /* address of string to add to string1 | */ |
The lstrcat function appends one string to another.
lpszString1
Points to a byte array containing a null-terminated string. The byte array containing the string must be large enough to contain both strings.
lpszString2
Points to the null-terminated string to be appended to the string specified in the lpszString1 parameter.
The return value points to lpszString1.