mirror of
https://github.com/PabloMK7/citra
synced 2024-11-15 13:18:24 +00:00
dccd89b796
The header doesn't need to be serialized. GetSaveStatePath may be static. Remove unused includes. Name the CryptoPP stringsource.
25 lines
511 B
C++
25 lines
511 B
C++
// Copyright 2020 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
#include "common/common_types.h"
|
|
|
|
namespace Core {
|
|
|
|
struct SaveStateInfo {
|
|
u32 slot;
|
|
u64 time;
|
|
enum class ValidationStatus {
|
|
OK,
|
|
RevisionDismatch,
|
|
} status;
|
|
};
|
|
|
|
constexpr u32 SaveStateSlotCount = 10; // Maximum count of savestate slots
|
|
|
|
std::vector<SaveStateInfo> ListSaveStates(u64 program_id);
|
|
|
|
} // namespace Core
|