mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 17:54:05 +00:00
20 lines
366 B
C++
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_
|