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

#include "frida-gum.h"

void intercept(void *address, gpointer replacement, gpointer user_data);
void unintercept(void *address);
void unintercept_self(void);

#endif