placement.lo
.deps
.libs
+history.lo
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
--- /dev/null
+#include "../../kernel/frame.h"
+#include "../../kernel/client.h"
+#include <glib.h>
+
+void history_startup()
+{
+}
+
+void history_shutdown()
+{
+}
+
+gboolean place_history(Client *c)
+{
+ return FALSE;
+}
--- /dev/null
+#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