mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-08 08:11:34 +00:00
20 lines
398 B
C
20 lines
398 B
C
#ifndef _STALKER_H
|
|
#define _STALKER_H
|
|
|
|
#include "frida-gumjs.h"
|
|
|
|
extern guint stalker_ic_entries;
|
|
extern gboolean backpatch_enable;
|
|
extern guint stalker_adjacent_blocks;
|
|
|
|
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
|
|
|