mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2024-11-30 22:00:16 +00:00
13 lines
275 B
C
13 lines
275 B
C
|
#ifndef SALTYSD_CORE_H
|
||
|
#define SALTYSD_CORE_H
|
||
|
|
||
|
#include <switch.h>
|
||
|
|
||
|
#include "useful.h"
|
||
|
|
||
|
extern u64 SaltySDCore_getCodeStart() LINKABLE;
|
||
|
extern u64 SaltySDCore_getCodeSize() LINKABLE;
|
||
|
extern u64 SaltySDCore_findCode(u8* code, size_t size) LINKABLE;
|
||
|
|
||
|
#endif // SALTYSD_CORE_H
|