Move protobufs inside src and distribute /debian

This commit is contained in:
Keith Winstein
2012-02-06 16:28:29 -05:00
parent 38c27149ee
commit 2611a42fb1
9 changed files with 9 additions and 7 deletions
+25
View File
@@ -0,0 +1,25 @@
option optimize_for = LITE_RUNTIME;
package HostBuffers;
message HostMessage {
repeated Instruction instruction = 1;
}
message Instruction {
extensions 2 to max;
}
message HostBytes {
optional bytes hoststring = 4;
}
message ResizeMessage {
optional int32 width = 5;
optional int32 height = 6;
}
extend Instruction {
optional HostBytes hostbytes = 2;
optional ResizeMessage resize = 3;
}