dunst/dunst.h
Sascha Kruse ea702f0dad refactor handling of the msgqueue
This should make things cleaner and easier to add filters in the future"
2011-11-14 20:48:57 +01:00

21 lines
342 B
C

#ifndef DUNST_H
#define DUNST_H
#include "draw.h"
typedef struct _msg_queue_t {
char *appname;
char *summary;
char *body;
char *icon;
char *msg;
struct _msg_queue_t *next;
time_t start;
int timeout;
int urgency;
unsigned long colors[ColLast];
char *color_strings[ColLast];
} msg_queue_t;
#endif