File: mustek_pp_drivers.h

package info (click to toggle)
sane-backends 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 37,552 kB
  • sloc: ansic: 418,643; cpp: 33,564; makefile: 2,502; java: 1,412; sh: 663; python: 330; awk: 83; perl: 27
file content (72 lines) | stat: -rw-r--r-- 1,226 bytes parent folder | download | duplicates (13)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72

#ifndef MUSTEK_PP_DRIVERS_H
#define MUSTEK_PP_DRIVERS_H

#include "mustek_pp.h"
#include "mustek_pp_decl.h"

static Mustek_pp_Functions Mustek_pp_Drivers[] = {
	{
		"debug", "Jochen Eisinger", "0.11-devel",
		debug_drv_init,
		debug_drv_capabilities,
		debug_drv_open,
		debug_drv_setup,
		debug_drv_config,
		debug_drv_close,
		debug_drv_start,
		debug_drv_read,
		debug_drv_stop
	},
	{
		"cis600", "Eddy De Greef", "0.13-beta",
		cis600_drv_init,
		cis_drv_capabilities,
		cis_drv_open,
		cis_drv_setup,
		cis_drv_config,
		cis_drv_close,
		cis_drv_start,
		cis_drv_read,
		cis_drv_stop
	},
	{
		"cis1200", "Eddy De Greef", "0.13-beta",
		cis1200_drv_init,
		cis_drv_capabilities,
		cis_drv_open,
		cis_drv_setup,
		cis_drv_config,
		cis_drv_close,
		cis_drv_start,
		cis_drv_read,
		cis_drv_stop
	},
	{
		"cis1200+", "Eddy De Greef", "0.13-beta",
		cis1200p_drv_init,
		cis_drv_capabilities,
		cis_drv_open,
		cis_drv_setup,
		cis_drv_config,
		cis_drv_close,
		cis_drv_start,
		cis_drv_read,
		cis_drv_stop
	},
	{
		"ccd300", "Jochen Eisinger", "0.11-devel",
		ccd300_init,
		ccd300_capabilities,
		ccd300_open,
		ccd300_setup,
		ccd300_config,
		ccd300_close,
		ccd300_start,
		ccd300_read,
		ccd300_stop
	}

};

#endif