blob: cbc5c8c7c6e5fd61bb5fcf77eb52d82a1ee345e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _ENTRY_H
#define _ENTRY_H
#include "frida-gumjs.h"
extern guint64 entry_point;
extern gboolean entry_reached;
void entry_config(void);
void entry_init(void);
void entry_start(void);
void entry_prologue(GumStalkerIterator *iterator, GumStalkerOutput *output);
#endif
|