adding support for self check and db updat ewith zip files

This commit is contained in:
jakani24
2024-03-29 10:11:39 +01:00
parent 3b450984b8
commit aa0bc23f50
53 changed files with 786 additions and 146 deletions

View File

@@ -4,6 +4,7 @@
bool app_stop_ = false;
bool can_run_thread_ = true;
bool can_scan_folder_ = true;
bool debug_mode_ = false;
int app_stop() {
return app_stop_;
}
@@ -29,4 +30,11 @@ int scan_folder_shutdown() {
can_scan_folder_ = true;
return can_scan_folder_;
}
int debug_mode() {
return debug_mode_;
}
int debug_mode_init() {
debug_mode_ = true;
return debug_mode_;
}
#endif