summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-08-01 02:57:11 +0000
committerDana Jansens <danakj@orodu.net>2003-08-01 02:57:11 +0000
commitbfd20c7a847cb70038381d06a0cbe7d003069d28 (patch)
tree5e4434f0bbbdc2fe964a6035b5342632b702860b
parent5101e89d14d05e621809885ea6af258fd764c0b5 (diff)
compile fixes
-rw-r--r--openbox/session.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/openbox/session.c b/openbox/session.c
index 2ad31ee6..f6314dd2 100644
--- a/openbox/session.c
+++ b/openbox/session.c
@@ -2,10 +2,13 @@
#ifndef USE_SM
+#include "session.h"
+#include "client.h"
+
void session_load(char *path) {}
void session_startup(int argc, char **argv) {}
void session_shutdown() {}
-ObSessionState* session_state_find(struct _ObClient *c) { return NULL; }
+ObSessionState* session_state_find(ObClient *c) { return NULL; }
void session_state_free(ObSessionState *state) {}
#else