mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
36 lines
761 B
Protocol Buffer
36 lines
761 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "lib/common.proto";
|
|
|
|
message ImgInputOutputProto {
|
|
}
|
|
|
|
message DiskCopyInputProto {}
|
|
message ImdInputProto {}
|
|
message Jv3InputProto {}
|
|
message D64InputProto {}
|
|
message NsiInputProto {}
|
|
message Td0InputProto {}
|
|
message DimInputProto {}
|
|
message FdiInputProto {}
|
|
message D88InputProto {}
|
|
message NFDInputProto {}
|
|
|
|
message ImageReaderProto {
|
|
optional string filename = 1 [(help) = "filename of input sector image"];
|
|
oneof format {
|
|
ImgInputOutputProto img = 2;
|
|
DiskCopyInputProto diskcopy = 3;
|
|
ImdInputProto imd = 4;
|
|
Jv3InputProto jv3 = 5;
|
|
D64InputProto d64 = 6;
|
|
NsiInputProto nsi = 7;
|
|
Td0InputProto td0 = 8;
|
|
DimInputProto dim = 9;
|
|
FdiInputProto fdi = 10;
|
|
D88InputProto d88 = 11;
|
|
NFDInputProto nfd = 12;
|
|
}
|
|
}
|
|
|