10 lines
201 B
C
10 lines
201 B
C
#ifndef SPSLR_PATCHER_H
|
|
#define SPSLR_PATCHER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int spslr_ipatch(void* ptr, uint32_t size, uint32_t target, uint32_t field);
|
|
int spslr_dpatch(void* ptr, uint32_t target);
|
|
|
|
#endif
|