summaryrefslogtreecommitdiff
path: root/libtk/extns.c
blob: c87cc29aebb61fb52975cc6add042fe0f0871867 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "lib9.h"
#include "draw.h"
#include "tk.h"

int	
tkextndeliver(Tk *tk, TkAction *binds, int event, void *data)
{
	return tksubdeliver(tk, binds, event, data, 1);
}

void
tkextnfreeobj(Tk *tk)
{
	USED(tk);
}

int
tkextnnewctxt(TkCtxt *ctxt)
{
	USED(ctxt);
	return 0;
}

void
tkextnfreectxt(TkCtxt *ctxt)
{
	USED(ctxt);
}

char*
tkextnparseseq(char *seq, char *rest, int *event)
{
	USED(seq);
	USED(rest);
	USED(event);
	return nil;
}