summaryrefslogtreecommitdiff
path: root/limox.h
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2022-08-20 17:52:16 +0200
committerxengineering <me@xengineering.eu>2022-08-20 17:52:16 +0200
commit4e61f83b432350303aee5635e98d3bc147e8fffa (patch)
tree4ac40e73bbdc648b4cafefd4917df6cd6d1a5983 /limox.h
parentb661cc4bde4004f4d7085716680969f4659222a1 (diff)
downloadlimox-4e61f83b432350303aee5635e98d3bc147e8fffa.tar
limox-4e61f83b432350303aee5635e98d3bc147e8fffa.tar.zst
limox-4e61f83b432350303aee5635e98d3bc147e8fffa.zip
Rename limox.{c,h} to net.{c,h}
Diffstat (limited to 'limox.h')
-rw-r--r--limox.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/limox.h b/limox.h
deleted file mode 100644
index 4f2d8c1..0000000
--- a/limox.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#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
-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