summaryrefslogtreecommitdiff
path: root/limox.h
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2022-08-19 10:51:24 +0200
committerxengineering <me@xengineering.eu>2022-08-19 12:13:49 +0200
commit43aa02ccbd484d8c7cecec7c38c446847b34e007 (patch)
tree5e34779ee75c8788760d74a9f73a01575c335f54 /limox.h
parent4c848f4085cd174d1ad54169632a95023774717b (diff)
downloadlimox-43aa02ccbd484d8c7cecec7c38c446847b34e007.tar
limox-43aa02ccbd484d8c7cecec7c38c446847b34e007.tar.zst
limox-43aa02ccbd484d8c7cecec7c38c446847b34e007.zip
Implement new datastructures
Diffstat (limited to 'limox.h')
-rw-r--r--limox.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/limox.h b/limox.h
index 90a3b76..4f2d8c1 100644
--- a/limox.h
+++ b/limox.h
@@ -1,3 +1,6 @@
+#ifndef LIMOX_H
+#define LIMOX_H
+
// life cycle / event loop related functions
void limox_init(void); // initialize limox
void limox_run_once(void); // process event loop for a short amount of time
@@ -6,3 +9,5 @@ void limox_quit(void); // disconnect and clean up
// interface for the GUI implementation
void limox_connect(const char* jid, const char* password);
void limox_disconnect(void);
+
+#endif