Files
AFLplusplus/frida_mode/include/entry.h
Your Name 028f8ced8f Fixed coverage on OSX (dependency on pipe2)
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
2021-08-20 17:28:40 +01:00

20 lines
311 B
C

#ifndef _ENTRY_H
#define _ENTRY_H
#include "frida-gumjs.h"
extern guint64 entry_point;
extern gboolean entry_compiled;
extern gboolean entry_run;
void entry_config(void);
void entry_init(void);
void entry_start(void);
void entry_prologue(GumStalkerIterator *iterator, GumStalkerOutput *output);
#endif