summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/report/crash_data.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/report/crash_data.h b/src/include/report/crash_data.h
index 3813cabf..e152c63f 100644
--- a/src/include/report/crash_data.h
+++ b/src/include/report/crash_data.h
@@ -32,7 +32,9 @@ enum {
CD_FLAG_TXT = (1 << 1),
CD_FLAG_ISEDITABLE = (1 << 2),
CD_FLAG_ISNOTEDITABLE = (1 << 3),
- CD_FLAG_ONELINE = (1 << 4),
+ /* Show this element in "short" info (abrt-cli -l) */
+ CD_FLAG_LIST = (1 << 4),
+ CD_FLAG_UNIXTIME = (1 << 5),
};
struct crash_item {
@@ -41,6 +43,8 @@ struct crash_item {
};
typedef struct crash_item crash_item;
+char *format_crash_item(struct crash_item *item);
+
/* In-memory crash data structure and accessors */
typedef GHashTable crash_data_t;