GUAC-236: Replace placeholder with required mask and index properties.

This commit is contained in:
Michael Jumper 2016-02-27 15:57:42 -08:00
parent 088f1dfede
commit 8c0a9b8bc5

View File

@ -31,10 +31,15 @@
typedef struct guacenc_image_stream { typedef struct guacenc_image_stream {
/** /**
* STUB: Placeholder property. This property exists only so that the * The index of the destination layer or buffer.
* guacenc_image_stream struct can be defined prior to implementation.
*/ */
int __PLACEHOLDER; int index;
/**
* The Guacamole protocol compositing operation (channel mask) to apply
* when drawing the image.
*/
int mask;
} guacenc_image_stream; } guacenc_image_stream;