summaryrefslogtreecommitdiff
path: root/src/rototiller.h
blob: f75ca11a2c083459ed218efdc13e86c4379a81a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _ROTOTILLER_H
#define _ROTOTILLER_H

typedef struct rototiller_module_t {
	void	(*render)(fb_fragment_t *);
	char	*name;
	char	*description;
	char	*author;
	char	*license;
} rototiller_module_t;

#endif
© All Rights Reserved