2013-04-17 22:43:11 -04:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
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
|
|
|
|
|
|
|
#include <vector>
|
2014-02-17 05:18:15 -05:00
|
|
|
|
|
|
|
#include "Common/Common.h"
|
|
|
|
#include "Core/ActionReplay.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2008-12-17 04:14:24 +00:00
|
|
|
namespace ActionReplay
|
|
|
|
{
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
void DecryptARCode(std::vector<std::string> vCodes, std::vector<AREntry> &ops);
|
2010-04-11 11:16:57 +00:00
|
|
|
|
2008-12-17 04:14:24 +00:00
|
|
|
} //namespace
|