about summary refs log tree commit diff
path: root/frida_mode/include/entry.h
blob: edc41467515274955037ccbae335f72be4165ee0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _ENTRY_H
#define _ENTRY_H

#include "frida-gumjs.h"

extern guint64  entry_point;
extern gboolean traceable;
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);

void entry_on_fork(void);

#endif