mirror of
				https://github.com/davidgiven/fluxengine.git
				synced 2025-10-24 11:11:02 -07:00 
			
		
		
		
	ImgInputOutputProto; it now only applies to img files. Make it honour the appropriate track layout setting too.
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto2";
 | |
| 
 | |
| import "lib/config/common.proto";
 | |
| 
 | |
| message ImgInputOutputProto {
 | |
|     optional bool filesystem_sector_order = 1 [
 | |
|         (help) = "read/write sector image in filesystem order",
 | |
|         default = false
 | |
|     ];
 | |
| }
 | |
| 
 | |
| message DiskCopyInputProto {}
 | |
| message ImdInputProto {}
 | |
| message Jv3InputProto {}
 | |
| message D64InputProto {}
 | |
| message NsiInputProto {}
 | |
| message Td0InputProto {}
 | |
| message DimInputProto {}
 | |
| message FdiInputProto {}
 | |
| message D88InputProto {}
 | |
| message NfdInputProto {}
 | |
| 
 | |
| // NEXT_TAG: 14
 | |
| message ImageReaderProto
 | |
| {
 | |
|     optional string filename = 1 [ (help) = "filename of input sector image" ];
 | |
| 
 | |
| 	optional ImageReaderWriterType type = 13
 | |
| 		[default = IMAGETYPE_NOT_SET, (help) = "input image type"];
 | |
| 
 | |
| 	optional ImgInputOutputProto img = 2;
 | |
| 	optional DiskCopyInputProto diskcopy = 3;
 | |
| 	optional ImdInputProto imd = 4;
 | |
| 	optional Jv3InputProto jv3 = 5;
 | |
| 	optional D64InputProto d64 = 6;
 | |
| 	optional NsiInputProto nsi = 7;
 | |
| 	optional Td0InputProto td0 = 8;
 | |
| 	optional DimInputProto dim = 9;
 | |
| 	optional FdiInputProto fdi = 10;
 | |
| 	optional D88InputProto d88 = 11;
 | |
| 	optional NfdInputProto nfd = 12;
 | |
| }
 |