// Copyright 2018 Citra Emulator Project // Licensed under GPLv2 or any later version // Refer to the license.txt file included. #pragma once #include #include #include #include "common/common_types.h" #include "common/swap.h" namespace FileSys { constexpr std::size_t SEEDDB_PADDING_BYTES{12}; struct Seed { using Data = std::array; u64_le title_id; Data data; std::array reserved; }; struct SeedDB { std::vector seeds; bool Load(); bool Save(); void Add(const Seed& seed); std::size_t GetCount() const; auto FindSeedByTitleID(u64 title_id) const; }; bool AddSeed(const Seed& seed); std::optional GetSeed(u64 title_id); u32 GetSeedCount(); } // namespace FileSys