aboutsummaryrefslogtreecommitdiffstats
path: root/src/jo_n_notify.h
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-17 16:32:09 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-17 16:32:09 +0200
commit4a41fd428bfd4ed95446e6f24bbd6ec60d87bf50 (patch)
treec7c5a4ba58b7463659f6660fa56b76fc72fd57a6 /src/jo_n_notify.h
parentespeak tests (diff)
downloadlowbat-bsd-4a41fd428bfd4ed95446e6f24bbd6ec60d87bf50.tar.gz
lowbat-bsd-4a41fd428bfd4ed95446e6f24bbd6ec60d87bf50.tar.bz2
lowbat-bsd-4a41fd428bfd4ed95446e6f24bbd6ec60d87bf50.tar.xz
lowbat-bsd-4a41fd428bfd4ed95446e6f24bbd6ec60d87bf50.tar.zst
lowbat-bsd-4a41fd428bfd4ed95446e6f24bbd6ec60d87bf50.zip
Using libespeak and libnotify
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