tmisu

Notification to stdout daemon
git clone https://git.inz.fi/tmisu/
Log | Files | Refs | README | LICENSE

output.h (215B)


      1 #ifndef OUTPUT_H
      2 #define OUTPUT_H
      3 
      4 #include <dbus/dbus.h>
      5 #include "tmisu.h"
      6 
      7 enum output_format {
      8 	FORMAT_TEXT,
      9 	FORMAT_JSON
     10 };
     11 
     12 void output_notification(dbus_uint32_t id, struct notification_data *notif);
     13 
     14 #endif