kopia lustrzana https://gitlab.com/sane-project/backends
				
				
				
			
		
			
				
	
	
		
			66 wiersze
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			66 wiersze
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
| ; $Id$
 | |
| ;
 | |
| ; SANE Backend specification file (Matto Marjanovic's format)
 | |
| ;
 | |
| ; It's basically emacs-lisp --- so ";" indicates comment to end of line.
 | |
| ; All syntactic elements are keyword tokens, followed by a string or
 | |
| ;  keyword argument, as specified.
 | |
| ;
 | |
| ; ":backend" *must* be specified.
 | |
| ; All other information is optional (but what good is the file without it?).
 | |
| ;
 | |
| 
 | |
| :backend "SnapScan"               ; name of backend
 | |
| :version "0.7"                    ; version of backend
 | |
| :status :alpha                    ; :alpha, :beta, :stable, :new
 | |
| :manpage "sane-snapscan"          ; name of manpage (if it exists)
 | |
| :url "http://snapscan.sourceforge.net" ; backend's web page
 | |
| 
 | |
| :devicetype :scanner              ; start of a list of devices....
 | |
|                                   ; other types:  :stillcam, :vidcam,
 | |
|                                   ;               :meta, :api
 | |
| 
 | |
| :mfg "AGFA"                   ; name a manufacturer
 | |
| :url "http://www.agfa.com/"
 | |
| :model "SnapScan 300"                  ; name models for above-specified mfg.
 | |
| :interface "SCSI"
 | |
| :comment "Only 8 bits/sample at present."
 | |
| :model "SnapScan 310"
 | |
| :interface "SCSI"
 | |
| :comment "Ditto"
 | |
| :model "SnapScan 600"
 | |
| :interface "SCSI"
 | |
| :comment "Ditto"
 | |
| :model "SnapScan 1236s"
 | |
| :interface "SCSI"
 | |
| :comment "Ditto. Have no specific programming info yet."
 | |
| :mfg "Vuego"
 | |
| :model "310s"
 | |
| :interface "SCSI"
 | |
| :comment "Close SnapScan 310 compatible."
 | |
| :mfg "Acer"
 | |
| :model "310s"
 | |
| :interface "SCSI"
 | |
| :comment "Same thing as the Vuego 310s."
 | |
| :model "610s"
 | |
| :interface "SCSI"
 | |
| :model "610plus"
 | |
| :interface "SCSI"
 | |
| :comment "Seems to be a close SnapScan 310/600 compatible."
 | |
| :model "Prisa 620s"
 | |
| :interface "SCSI"
 | |
| :comment "Seems to be a close SnapScan 310/600 compatible."
 | |
| :mfg "Guillemot International"
 | |
| :model "Maxi Scan A4 Deluxe (SCSI)"
 | |
| :interface "SCSI"
 | |
| :comment "May be a repackaged Vuego 310s or SnapScan 310s."
 | |
| ;:devicetype :api                  ; specify a different type
 | |
| ;:desc "Interface to FrObYz API"   ; describe a non-hardware device
 | |
| 
 | |
| ; :comment and :url specifiers are optional after :mfg, :model, :desc,
 | |
| ;  and at the top-level.
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 |