aboutsummaryrefslogtreecommitdiffstats
path: root/src/daemon.h
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-05-11 15:20:01 -0400
committerJesse Luehrs <doy@tozt.net>2016-05-11 15:20:01 -0400
commitb92788dee979855f753e030cb8be8d19c22d00df (patch)
tree1c8992c28e0b874dacf33bd912d6a372f1c5b243 /src/daemon.h
parentb11900bb0594b5e04c4ad69237d0a61146f85d35 (diff)
downloadrunes-b92788dee979855f753e030cb8be8d19c22d00df.tar.gz
runes-b92788dee979855f753e030cb8be8d19c22d00df.zip
split global window management stuff out into its own file
also rename a few things for clarity
Diffstat (limited to 'src/daemon.h')
-rw-r--r--src/daemon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/daemon.h b/src/daemon.h
index fc2e801..733e940 100644
--- a/src/daemon.h
+++ b/src/daemon.h
@@ -5,13 +5,13 @@
struct runes_daemon {
RunesLoop *loop;
- RunesWindowBackendGlobal *wg;
+ RunesWindowBackend *wb;
char *sock_name;
int sock;
int client_sock;
};
-RunesDaemon *runes_daemon_new(RunesLoop *loop, RunesWindowBackendGlobal *wg);
+RunesDaemon *runes_daemon_new(RunesLoop *loop, RunesWindowBackend *wb);
void runes_daemon_init_loop(RunesDaemon *daemon, RunesLoop *loop);
void runes_daemon_send_client_message(int argc, char **argv);
void runes_daemon_delete(RunesDaemon *daemon);