kopia lustrzana https://gitlab.com/sane-project/backends
				
				
				
			
		
			
				
	
	
		
			44 wiersze
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			44 wiersze
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
;
 | 
						|
; SANE Backend specification file
 | 
						|
;
 | 
						|
; 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 "coolscan"               ; name of backend
 | 
						|
:version "0.4.3 (unmaintained)"   ; version of backend
 | 
						|
:url "http://andreas.rick.free.fr/sane/" ; backend's web page
 | 
						|
:manpage "sane-coolscan"
 | 
						|
:devicetype :scanner              ; start of a list of devices....
 | 
						|
                                  ; other types:  :stillcam, :vidcam,
 | 
						|
                                  ;               :meta, :api
 | 
						|
 | 
						|
:mfg "Nikon"                   ; name a manufacturer
 | 
						|
:url "http://www.nikon.com/"
 | 
						|
:model "LS-20"                 ; name models for above-specified mfg.
 | 
						|
:interface "SCSI"
 | 
						|
:comment "The LS-20 has been replaced by the LS-30"
 | 
						|
:status :basic
 | 
						|
 | 
						|
:model "LS-30"                 ; name models for above-specified mfg.
 | 
						|
:interface "SCSI"
 | 
						|
:comment "alpha: only 24/30 bit RGB + 32/40 bit RGBI"
 | 
						|
:status :basic
 | 
						|
 | 
						|
:model "LS-2000"               ; name models for above-specified mfg.
 | 
						|
:interface "SCSI"
 | 
						|
:comment "alpha: only 24/36 bit + RGB 32/48 bit RGBI"
 | 
						|
:status :basic
 | 
						|
 | 
						|
:model "LS-1000"
 | 
						|
:interface "SCSI"
 | 
						|
:comment "Doesn't support gamma correction"
 | 
						|
:status :basic
 | 
						|
 | 
						|
; :comment and :url specifiers are optional after :mfg, :model, :desc,
 | 
						|
;  and at the top-level.
 |