mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-08 08:11:34 +00:00
* Added JS support * Added some documentation Co-authored-by: Your Name <you@example.com>
12 lines
232 B
C
12 lines
232 B
C
#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
|
|
|