Play-/Source/ui_shared/BootablesProcesses.h
2024-11-06 08:25:48 -05:00

13 lines
367 B
C++

#pragma once
#include "filesystem_def.h"
#include <set>
bool DoesBootableExist(const fs::path&);
bool TryRegisterBootable(const fs::path&);
bool TryUpdateLastBootedTime(const fs::path&);
void ScanBootables(const fs::path&, bool = true);
std::set<fs::path> GetActiveBootableDirectories();
void PurgeInexistingFiles();
void FetchGameTitles();
void FetchGameCovers();