Caller must call CoTaskMemFree() on the result when done.
| 3141 | |
| 3142 | // Caller must call CoTaskMemFree() on the result when done. |
| 3143 | PWSTR GetDocumentsFolder() |
| 3144 | { |
| 3145 | PWSTR path; |
| 3146 | if (SUCCEEDED(SHGetKnownFolderPath(FOLDERID_Documents, KF_FLAG_DONT_VERIFY, NULL, &path))) |
| 3147 | return path; |
| 3148 | return nullptr; |
| 3149 | } |
| 3150 | |
| 3151 | |
| 3152 |
no outgoing calls
no test coverage detected