mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
10 lines
223 B
C++
10 lines
223 B
C++
|
#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);
|
||
|
};
|