summaryrefslogtreecommitdiff
path: root/spice1.proto
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2010-06-30 22:19:12 +0200
committerMarc-André Lureau <marcandre.lureau@gmail.com>2012-03-20 15:25:46 +0100
commitc5d06102b77d20600303ff636b095c82be29f0dc (patch)
tree082d49656318eb2a331ad5851ae57e0b93d86db7 /spice1.proto
parentdabdea4fac8de901b4af2c61178097c2d3f5f78d (diff)
Properly parse and marshall SpiceString
Diffstat (limited to 'spice1.proto')
-rw-r--r--spice1.proto8
1 files changed, 4 insertions, 4 deletions
diff --git a/spice1.proto b/spice1.proto
index c9a18d9..982f666 100644
--- a/spice1.proto
+++ b/spice1.proto
@@ -522,12 +522,12 @@ struct String {
string_flags flags; /* Special: Only one of a1/a4/a8 set */
switch (flags) {
case RASTER_A1:
- RasterGlyphA1 glyphs[length] @ctype(SpiceRasterGlyph);
+ RasterGlyphA1 glyphs[length] @ctype(SpiceRasterGlyph) @ptr_array;
case RASTER_A4:
- RasterGlyphA4 glyphs[length] @ctype(SpiceRasterGlyph);
+ RasterGlyphA4 glyphs[length] @ctype(SpiceRasterGlyph) @ptr_array;
case RASTER_A8:
- RasterGlyphA8 glyphs[length] @ctype(SpiceRasterGlyph);
- } u @end @nomarshal;
+ RasterGlyphA8 glyphs[length] @ctype(SpiceRasterGlyph) @ptr_array;
+ } u @anon;
};
channel DisplayChannel : BaseChannel {