| 230 | } |
| 231 | |
| 232 | std::string Platform::Directory::GetEntryName() const { |
| 233 | assert(valid_entry); |
| 234 | |
| 235 | #if defined(__vita__) |
| 236 | return entry.d_name; |
| 237 | #elif defined(_WIN32) |
| 238 | return Utils::FromWideString(entry.cFileName); |
| 239 | #else |
| 240 | return entry->d_name; |
| 241 | #endif |
| 242 | } |
| 243 | |
| 244 | #if !defined(__vita__) && !defined(_WIN32) |
| 245 | [[maybe_unused]] static inline Platform::FileType GetEntryType(...) { |
no outgoing calls
no test coverage detected