summaryrefslogtreecommitdiff
path: root/sdl.c
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2022-11-20 10:21:06 +0100
committerxengineering <me@xengineering.eu>2022-11-20 10:21:06 +0100
commita4f88ce6fe9007a8d2a34d5607ee57c625034076 (patch)
tree34abc8e40dd97f1aa866180a62e4e3a7ad1084ee /sdl.c
parente7d40d73736d1adc478c742c921236b826004fd9 (diff)
downloadlimox-a4f88ce6fe9007a8d2a34d5607ee57c625034076.tar
limox-a4f88ce6fe9007a8d2a34d5607ee57c625034076.tar.zst
limox-a4f88ce6fe9007a8d2a34d5607ee57c625034076.zip
Remove unnecessary sdl.c
This was for an old SDL (version 1) executable. This one is not needed anymore because the SDL2 version now runs on X11 and Wayland.
Diffstat (limited to 'sdl.c')
-rw-r--r--sdl.c44
1 files changed, 0 insertions, 44 deletions
diff --git a/sdl.c b/sdl.c
deleted file mode 100644
index fcc9581..0000000
--- a/sdl.c
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-#include <SDL/SDL.h>
-
-#include "net.h"
-#include "data.h"
-
-
-void gui_run(void) {
-
- int cont = 1;
- SDL_Event event;
-
- SDL_Init(SDL_INIT_EVERYTHING);
- SDL_WM_SetCaption("LimoX", NULL);
- SDL_SetVideoMode(800, 600, 32, SDL_HWSURFACE);
- while (cont) {
- SDL_WaitEvent(&event);
- if (event.type == SDL_QUIT)
- cont = 0;
- }
- SDL_Quit();
-
-}
-
-void gui_connected(char* jid, char* password) {
-
-}
-
-void gui_disconnected(void) {
-
-}
-
-void gui_add_roster_item_widget(roster_item_t* item) {
-
-}
-
-void gui_add_chat_widget(chat_t* chat) {
-
-}
-
-void gui_add_message_widget(message_t* message, chat_t* chat) {
-
-}