lstrcpyn

    看代码时遇到的一些不会用的函数,记录下来。

    1. lstrcpyn

LPTSTR lstrcpyn( __out LPTSTR lpString1, __in LPCTSTR lpString2, __in int iMaxLength);

    说明:  

    该函数把第二个参数指定的字符串复制到第一个参数指定的字符串,第三个参数指定复制的长度。

 

原文地址:https://www.cnblogs.com/xiaoyusmile/p/3912273.html