set up the history place stuff's files
This commit is contained in:
parent
a648c05a7a
commit
0edc14a4f9
4 changed files with 31 additions and 2 deletions
|
@ -4,3 +4,4 @@ placement.la
|
||||||
placement.lo
|
placement.lo
|
||||||
.deps
|
.deps
|
||||||
.libs
|
.libs
|
||||||
|
history.lo
|
||||||
|
|
|
@ -7,9 +7,9 @@ CPPFLAGS=$(XFT_CFLAGS) $(GLIB_CFLAGS) @CPPFLAGS@ \
|
||||||
plugin_LTLIBRARIES=placement.la
|
plugin_LTLIBRARIES=placement.la
|
||||||
|
|
||||||
placement_la_LDFLAGS=-module -avoid-version
|
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
|
MAINTAINERCLEANFILES=Makefile.in
|
||||||
|
|
||||||
|
|
16
plugins/placement/history.c
Normal file
16
plugins/placement/history.c
Normal 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;
|
||||||
|
}
|
12
plugins/placement/history.h
Normal file
12
plugins/placement/history.h
Normal 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
|
Loading…
Reference in a new issue