| 6 | #include "Engine/Core/Types/String.h" |
| 7 | |
| 8 | void UWPFileSystem::GetSpecialFolderPath(const SpecialFolder type, String& result) |
| 9 | { |
| 10 | Char buffer[260]; |
| 11 | int length = CUWPPlatform->GetSpecialFolderPath((UWPPlatformImpl::SpecialFolder)type, buffer, 260); |
| 12 | |
| 13 | result = buffer; |
| 14 | NormalizePath(result); |
| 15 | } |
| 16 | |
| 17 | #endif |
nothing calls this directly
no test coverage detected