zsm/include/zen/notification.h

17 lines
235 B
C
Raw Normal View History

2024-04-30 18:17:17 +02:00
#ifndef NOTIFICATION_H
#define NOTIFICATION_H
#include <stdint.h>
#include "config.h"
#ifdef USE_LUFT
#include "luft.h"
#else
2024-04-30 18:17:17 +02:00
#include <libnotify/notify.h>
#endif
2024-04-30 18:17:17 +02:00
void send_notification(uint8_t *author, uint8_t *content);
2024-04-30 18:17:17 +02:00
#endif