all repos — openbox @ 0edc14a4f92e34f5edcdb00898013206142ca71d

openbox fork - make it a bit more like ryudo

set up the history place stuff's files
Dana Jansens danakj@orodu.net
commit

0edc14a4f92e34f5edcdb00898013206142ca71d

parent

a648c05a7a2608e7e909317f5afe8427a0ea0d68

M plugins/placement/.cvsignoreplugins/placement/.cvsignore

@@ -4,3 +4,4 @@ placement.la

placement.lo .deps .libs +history.lo
M plugins/placement/Makefile.amplugins/placement/Makefile.am

@@ -7,9 +7,9 @@

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
A 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; +}
A 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