aboutsummaryrefslogtreecommitdiff
path: root/src/proone.h
blob: 49e9d9c022987d76dd52ff53c74aa2b3cb5164c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "proone_pack.h"
#include "proone_rnd.h"

#include <stdint.h>
#include <stdbool.h>


struct proone_global {
    uint8_t *host_cred_data;
    size_t host_cred_size;
    bool has_proc_lim_lock;
    bool bin_ready;
    int caught_signal;
    proone_rnd_engine_t *rnd;
    proone_unpack_bin_archive_result_t bin_pack;
    proone_bin_archive_t bin_archive;
};


extern struct proone_global pne_global;