// Copyright 2019 Citra Emulator Project // Licensed under GPLv2 or any later version // Refer to the license.txt file included. #pragma once #include #include "common/common_types.h" namespace FileSys::Patch { bool ApplyIpsPatch(const std::vector& patch, std::vector& buffer); bool ApplyBpsPatch(const std::vector& patch, std::vector& buffer); } // namespace FileSys::Patch