summaryrefslogtreecommitdiffstats
path: root/src/CLI/report.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/CLI/report.h')
-rw-r--r--src/CLI/report.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/CLI/report.h b/src/CLI/report.h
index 2969b650..8a851b8e 100644
--- a/src/CLI/report.h
+++ b/src/CLI/report.h
@@ -19,6 +19,10 @@
#define ABRT_CLI_REPORT_H
/* Reports the crash with corresponding uuid over DBus. */
-int report(const char *uuid, bool always);
+enum {
+ CLI_REPORT_BATCH = 1 << 0,
+ CLI_REPORT_SILENT_IF_NOT_FOUND = 1 << 1,
+};
+int report(const char *uuid, int flags);
#endif