summaryrefslogtreecommitdiff
path: root/plugins/placement
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/placement')
-rw-r--r--plugins/placement/.cvsignore1
-rw-r--r--plugins/placement/Makefile.am4
-rw-r--r--plugins/placement/history.c16
-rw-r--r--plugins/placement/history.h12
4 files changed, 31 insertions, 2 deletions
diff --git a/plugins/placement/.cvsignore b/plugins/placement/.cvsignore
index 75afa579..3ea11c73 100644
--- a/plugins/placement/.cvsignore
+++ b/plugins/placement/.cvsignore
@@ -4,3 +4,4 @@ placement.la
placement.lo
.deps
.libs
+history.lo
diff --git a/plugins/placement/Makefile.am b/plugins/placement/Makefile.am
index 58993833..b48bb850 100644
--- a/plugins/placement/Makefile.am
+++ b/plugins/placement/Makefile.am
@@ -7,9 +7,9 @@ CPPFLAGS=$(XFT_CFLAGS) $(GLIB_CFLAGS) @CPPFLAGS@ \
plugin_LTLIBRARIES=placement.la
placement_la_LDFLAGS=-module -avoid-version
-placement_la_SOURCES=placement.c
+placement_la_SOURCES=placement.c history.c
-noinst_HEADERS=
+noinst_HEADERS=history.h
MAINTAINERCLEANFILES=Makefile.in
diff --git a/plugins/placement/history.c b/plugins/placement/history.c
new file mode 100644
index 00000000..d979bb1f
--- /dev/null
+++ b/plugins/placement/history.c
@@ -0,0 +1,16 @@
+#include "../../kernel/frame.h"
+#include "../../kernel/client.h"
+#include <glib.h>
+
+void history_startup()
+{
+}
+
+void history_shutdown()
+{
+}
+
+gboolean place_history(Client *c)
+{
+ return FALSE;
+}
diff --git a/plugins/placement/history.h b/plugins/placement/history.h
new file mode 100644
index 00000000..48a29c3e
--- /dev/null
+++ b/plugins/placement/history.h
@@ -0,0 +1,12 @@
+#ifndef __plugin_placement_history_h
+#define __plugin_placement_history_h
+
+#include "../../kernel/client.h"
+#include <glib.h>
+
+void history_startup();
+void history_shutdown();
+
+gboolean place_history(Client *c);
+
+#endif