set up the history place stuff's files

This commit is contained in:
Dana Jansens 2003-03-21 07:54:48 +00:00
parent a648c05a7a
commit 0edc14a4f9
4 changed files with 31 additions and 2 deletions

View file

@ -4,3 +4,4 @@ placement.la
placement.lo
.deps
.libs
history.lo

View 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

View file

@ -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;
}

View file

@ -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