Loader: Skeleton IPS/IPS32 patching support.

This commit is contained in:
Michael Scire 2018-07-28 20:01:09 -07:00
parent cd42f6dc18
commit c1fd2eda20
3 changed files with 118 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#pragma once
#include <switch.h>
#include <cstdio>
#include "ldr_nso.hpp"
class PatchUtils {
public:
static void ApplyPatches(u64 title_id, const NsoUtils::NsoHeader *header, u8 *mapped_nso, size_t size);
};