#pragma once #include #include #include namespace sphaira::location { struct Entry { std::string name{}; std::string url{}; std::string user{}; std::string pass{}; std::string bearer{}; std::string pub_key{}; std::string priv_key{}; u16 port{}; }; using Entries = std::vector; auto Load() -> Entries; void Add(const Entry& e); // helper for hdd devices. // this doesn't really belong in this header, however // locations likely will be renamed to something more generic soon. struct StdioEntry { // mount point (ums0:) std::string mount{}; // ums0: (USB Flash Disk) std::string name{}; // set if read-only. bool write_protect; }; using StdioEntries = std::vector; // set write=true to filter out write protected devices. auto GetStdio(bool write) -> StdioEntries; } // namespace sphaira::location