• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; SANE Backend specification file
2;
3; It's basically emacs-lisp --- so ";" indicates comment to end of line.
4; All syntactic elements are keyword tokens, followed by a string or
5;  keyword argument, as specified.
6;
7; ":backend" *must* be specified.
8; All other information is optional (but what good is the file without it?).
9;
10:backend "tamarack"               ; name of backend
11:version "unmaintained"                 ; version of backend
12;
13:manpage "sane-tamarack"             ; name of manpage (if it exists)
14
15:devicetype :scanner
16
17:mfg "Tamarack"                        ; name a manufacturer
18;:url "http://www.tamarack.net/"
19; doesn't exist anymore?
20
21:model "Artiscan 6000C"                ; name models for above-specified mfg.
22:interface "SCSI"
23:status :good
24:comment "3 pass, 300 DPI"
25
26:model "Artiscan 8000C"                ; name models for above-specified mfg.
27:interface "SCSI"
28:status :good
29:comment "3 pass, 400 DPI"
30
31:model "Artiscan 12000C"               ; name models for above-specified mfg.
32:interface "SCSI"
33:status :good
34:comment "3 pass, 600 DPI"
35