diff options
| author | WorksButNotTested <62701594+WorksButNotTested@users.noreply.github.com> | 2021-04-30 22:42:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-30 23:42:50 +0200 |
| commit | c6e8314446344d3a65b828feb31f627ce11ba352 (patch) | |
| tree | ab2804de57ca4aa70412ddb1aa09f5dc33d94c5d /frida_mode/include/entry.h | |
| parent | 86452cc959bd4b0d5fe6e60d0eefbc7848fe38e2 (diff) | |
| download | afl++-c6e8314446344d3a65b828feb31f627ce11ba352.tar.gz | |
Support for AFL_ENTRYPOINT (#898)
Co-authored-by: Your Name <you@example.com>
Diffstat (limited to 'frida_mode/include/entry.h')
| -rw-r--r-- | frida_mode/include/entry.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/frida_mode/include/entry.h b/frida_mode/include/entry.h new file mode 100644 index 00000000..967831af --- /dev/null +++ b/frida_mode/include/entry.h @@ -0,0 +1,15 @@ +#ifndef _ENTRY_H +#define _ENTRY_H + +#include "frida-gum.h" + +extern guint64 entry_start; + +void entry_init(void); + +void entry_run(void); + +void entry_prologue(GumStalkerIterator *iterator, GumStalkerOutput *output); + +#endif + |
