| 341 | } |
| 342 | |
| 343 | LPWSTR AllocateAndCopyWideString(LPCWSTR inputString) |
| 344 | { |
| 345 | LPWSTR outputString = NULL; |
| 346 | |
| 347 | outputString = (LPWSTR)LocalAlloc(LPTR, |
| 348 | (wcslen(inputString) + 1) * sizeof(WCHAR)); |
| 349 | if (outputString != NULL) |
| 350 | { |
| 351 | lstrcpyW(outputString, inputString); |
| 352 | } |
| 353 | return outputString; |
| 354 | } |
| 355 | |
| 356 | BOOL GetProgAndPublisherInfo(PCMSG_SIGNER_INFO pSignerInfo, |
| 357 | PSPROG_PUBLISHERINFO Info) |
no outgoing calls
no test coverage detected