将一个字符串追加到另一个字符串。 警告 请勿使用。 请考虑改用 StringCchCat。 请参阅安全注意事项。 语法 C++ 复制 LPWSTR lstrcatW( [in, out] LPWSTR lpString1, [in] LPCWSTR lpString2 ); 参数 [in, out] lpString1 类型: LPTSTR 第一个以 null 结尾的字符串。 此缓冲区必须足够大,才能包含这...
WCHAR ProvKey[MAX_PATH];/* Create the needed key string */ProvKey[0]='\0';lstrcatW(ProvKey, Trust);lstrcatW(ProvKey, FunctionType);lstrcatW(ProvKey, GuidString);/* We don't care about success or failure */RegDeleteKeyW(HKEY_LOCAL_MACHINE, ProvKey); } 开发者ID:Kelimion,项目名称:wine...
WCHAR ProvKey[MAX_PATH];/* Create the needed key string */ProvKey[0]='\0';lstrcatW(ProvKey, Trust);lstrcatW(ProvKey, FunctionType);lstrcatW(ProvKey, GuidString);/* We don't care about success or failure */RegDeleteKeyW(HKEY_LOCAL_MACHINE, ProvKey); } 开发者ID:Kelimion,项目名称:wine...