2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2017-03-03 14:43:52 -05:00
|
|
|
#include <string>
|
2008-10-28 05:55:34 +00:00
|
|
|
#include <vector>
|
2014-02-17 05:18:15 -05:00
|
|
|
|
2014-09-07 20:06:58 -05:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 05:18:15 -05: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
|