aboutsummaryrefslogtreecommitdiffstats
path: root/src/jo_n_notify.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/jo_n_notify.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/jo_n_notify.h b/src/jo_n_notify.h
new file mode 100644
index 0000000..7011baa
--- /dev/null
+++ b/src/jo_n_notify.h
@@ -0,0 +1,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