]> Dogcows Code - chaz/openbox/commitdiff
set up the history place stuff's files
authorDana Jansens <danakj@orodu.net>
Fri, 21 Mar 2003 07:54:48 +0000 (07:54 +0000)
committerDana Jansens <danakj@orodu.net>
Fri, 21 Mar 2003 07:54:48 +0000 (07:54 +0000)
plugins/placement/.cvsignore
plugins/placement/Makefile.am
plugins/placement/history.c [new file with mode: 0644]
plugins/placement/history.h [new file with mode: 0644]

index 75afa5793799706c36e1ec48503882e74af02889..3ea11c73368bf4335df7573957087de2485cb548 100644 (file)
@@ -4,3 +4,4 @@ placement.la
 placement.lo
 .deps
 .libs
+history.lo
index 589938331d100e55212943aa639cdd8b4bf2085a..b48bb8503c4c6a18db81d03193891c05f655b9fa 100644 (file)
@@ -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 (file)
index 0000000..d979bb1
--- /dev/null
@@ -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 (file)
index 0000000..48a29c3
--- /dev/null
@@ -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
This page took 0.026958 seconds and 4 git commands to generate.