blob: d979bb1f4de77202be2972e181e08c00be2c1ed4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
}
|