mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
(cherry picked from commit 72681d810e2eeab2e699e73e0df9b9816fddecc9) # Conflicts: # urbackupserver/LogReport.cpp
14 lines
389 B
C++
14 lines
389 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
class IDatabase;
|
|
|
|
void init_log_report();
|
|
|
|
std::string load_report_script();
|
|
|
|
void reload_report_script();
|
|
|
|
bool run_report_script(int incremental, bool resumed, int image, int infos,
|
|
int warnings, int errors, bool success, const std::string& report_mail, const std::string& data,
|
|
const std::string& clientname, int clientid, IDatabase* db); |