dolphin/Source/Core/Core/ARDecrypt.h
2013-12-31 14:03:19 -05:00

20 lines
366 B
C++

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#ifndef _ARDECRYPT_H_
#define _ARDECRYPT_H_
#include <vector>
#include "Common.h"
#include "ActionReplay.h"
namespace ActionReplay
{
void DecryptARCode(std::vector<std::string> vCodes, std::vector<AREntry> &ops);
} //namespace
#endif //_ARDECRYPT_H_