| 75 | } |
| 76 | |
| 77 | inline nfdresult_t GetPath(const nfdpathset_t* pathSet, |
| 78 | nfdpathsetsize_t index, |
| 79 | nfdnchar_t*& outPath) noexcept { |
| 80 | return ::NFD_PathSet_GetPathN(pathSet, index, &outPath); |
| 81 | } |
| 82 | |
| 83 | inline void FreePath(nfdnchar_t* filePath) noexcept { |
| 84 | ::NFD_PathSet_FreePathN(filePath); |
nothing calls this directly
no test coverage detected