mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 19:08:08 +00:00
Removed use of 'realpath' in makefiles to fix OSX incompatibility Fixed handling of when prefetching should be enabled Snap the main binary during initialization to avoid stability issues with lazy loading Add support for configurable inline cache entries for FRIDA on x86/x64 Support for prefetching FRIDA backpatches on x86/x64 Improved stats support on x86/x64/aarch64
18 lines
320 B
C
18 lines
320 B
C
#ifndef _STALKER_H
|
|
#define _STALKER_H
|
|
|
|
#include "frida-gumjs.h"
|
|
|
|
extern guint stalker_ic_entries;
|
|
|
|
void stalker_config(void);
|
|
void stalker_init(void);
|
|
GumStalker *stalker_get(void);
|
|
void stalker_start(void);
|
|
void stalker_trust(void);
|
|
|
|
GumStalkerObserver *stalker_get_observer(void);
|
|
|
|
#endif
|
|
|