updateing deepscan rtp

This commit is contained in:
jakani24
2024-06-07 08:43:39 +02:00
parent 34ff4daa82
commit 23fec810ec
16 changed files with 263 additions and 212 deletions

View File

@@ -5,6 +5,7 @@ bool app_stop_ = false;
bool can_run_thread_ = true;
bool can_scan_folder_ = true;
bool debug_mode_ = false;
bool is_yara_ready_ = false;
int app_stop() {
return app_stop_;
}
@@ -37,4 +38,12 @@ int debug_mode_init() {
debug_mode_ = true;
return debug_mode_;
}
int set_yara_ready() {
is_yara_ready_ = true;
return is_yara_ready_;
}
int is_yara_ready() {
return is_yara_ready_;
}
#endif