about summary refs log tree commit diff
path: root/frida_mode/include/intercept.h
blob: 8fe93b10414a2c4686b2509de452cdd1733e93b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _INTERCEPTOR_H
#define _INTERCEPTOR_H

#include "frida-gumjs.h"

void intercept_hook(void *address, gpointer replacement, gpointer user_data);
void intercept_unhook(void *address);
void intercept_unhook_self(void);

#endif