blob: 0bf7ca1b5d98b50eb84960cbf5e42792d67b5349 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/****************************************************************************************/
/* */
/* File : jo_n_notify.h /_________/ */
/* Author : Joe | */
/* Date : 04/2020 | */
/* Info : Uses libnotify lib to notify | */
/* / | */
/* \ / */
/* \_____/ */
/* */
/****************************************************************************************/
#ifndef JO_N_NOTIFY_H
#define JO_N_NOTIFY_H
#include <libnotify/notify.h>
#include <stddef.h>
#include <stdint.h>
void jo_n_notify(
const char[],
const char[],
NotifyUrgency,
int32_t
);
#endif
|