2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2017-03-03 19:43:52 +00:00
|
|
|
#include <string>
|
2008-10-28 05:55:34 +00:00
|
|
|
#include <vector>
|
2014-02-17 10:18:15 +00:00
|
|
|
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/ActionReplay.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2008-12-17 04:14:24 +00:00
|
|
|
namespace ActionReplay
|
|
|
|
{
|
2016-07-23 01:05:04 +00:00
|
|
|
void DecryptARCode(std::vector<std::string> vCodes, std::vector<AREntry>* ops);
|
2008-12-17 04:14:24 +00:00
|
|
|
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace ActionReplay
|