mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
20 lines
423 B
Protocol Buffer
20 lines
423 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "lib/imagereader/imagereader.proto";
|
|
import "lib/common.proto";
|
|
|
|
message D64OutputProto {}
|
|
message LDBSOutputProto {}
|
|
message DiskCopyOutputProto {}
|
|
|
|
message ImageWriterProto {
|
|
optional string filename = 1 [(help) = "filename of output sector image"];
|
|
oneof format {
|
|
ImgInputOutputProto img = 2;
|
|
D64OutputProto d64 = 3;
|
|
LDBSOutputProto ldbs = 4;
|
|
DiskCopyOutputProto diskcopy = 5;
|
|
}
|
|
}
|
|
|