aboutsummaryrefslogtreecommitdiffstats
path: root/src/mtouch.c
blob: 2d05921818e3f50fcb3fe2ae80350adff75c814e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "mtouch.h"
#include <errno.h>

/******************************************************/

int configure_mtouch(struct MTouch *mt, int fd)
{
	int rc = read_capabilities(&mt->caps, fd);
	if (rc < 0)
		return rc;
	output_capabilities(&mt->caps);
	return 0;
}

/******************************************************/

int init_mtouch(struct MTouch *mt)
{
	return 0;
}

/******************************************************/