2024-04-30 18:17:17 +02:00
|
|
|
#ifndef NOTIFICATION_H
|
|
|
|
#define NOTIFICATION_H
|
|
|
|
|
2024-09-16 14:11:01 +02:00
|
|
|
#include <stdint.h>
|
2024-11-05 01:20:43 +01:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#ifdef USE_LUFT
|
|
|
|
#include "luft.h"
|
|
|
|
#else
|
2024-04-30 18:17:17 +02:00
|
|
|
#include <libnotify/notify.h>
|
2024-11-05 01:20:43 +01:00
|
|
|
#endif
|
2024-04-30 18:17:17 +02:00
|
|
|
|
2024-09-18 09:37:34 +02:00
|
|
|
void send_notification(uint8_t *author, uint8_t *content);
|
2024-04-30 18:17:17 +02:00
|
|
|
|
|
|
|
#endif
|