2019-11-24 20:32:10 +01:00
|
|
|
// Copyright 2019 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace FileSys::Patch {
|
|
|
|
|
|
|
|
bool ApplyIpsPatch(const std::vector<u8>& patch, std::vector<u8>& buffer);
|
|
|
|
|
2019-11-25 20:49:48 +01:00
|
|
|
bool ApplyBpsPatch(const std::vector<u8>& patch, std::vector<u8>& buffer);
|
|
|
|
|
2019-11-24 20:32:10 +01:00
|
|
|
} // namespace FileSys::Patch
|