~ubuntu-branches/ubuntu/quantal/virtualbox/quantal

« back to all changes in this revision

Viewing changes to include/VBox/RemoteDesktop/VRDE.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2012-04-05 12:41:55 UTC
  • mfrom: (3.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20120405124155-i7b39tv5ddwhubbe
Tags: 4.1.12-dfsg-2
* Upstream has replaced the 4.1.12 tarball with a new one that fixes a
  crash when creating host only interfaces. (Closes: #667460)
  - Add 36-tarball-respin.patch which contains the diff between the old
    and the new tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1149
1149
                                                      * in VRDEEnableConnections to the actually used value.
1150
1150
                                                      * VRDEDestroy must set the port to 0xFFFFFFFF.
1151
1151
                                                      */
 
1152
#define VRDE_SP_CLIENT_STATUS     (VRDE_SP_BASE + 2) /* UTF8 string. The change of the generic client status:
 
1153
                                                      * "ATTACH"   - the client is attached;
 
1154
                                                      * "DETACH"   - the client is detached;
 
1155
                                                      * "NAME=..." - the client name changes.
 
1156
                                                      * Can be used for other notifications.
 
1157
                                                      */
1152
1158
 
1153
1159
#pragma pack(1)
1154
1160
/* VRDE_QP_FEATURE data. */
1158
1164
    char     achInfo[1]; /* UTF8 property input name and output value. */
1159
1165
} VRDEFEATURE;
1160
1166
 
 
1167
/* VRDE_SP_CLIENT_STATUS data. */
 
1168
typedef struct VRDECLIENTSTATUS
 
1169
{
 
1170
    uint32_t u32ClientId;
 
1171
    uint32_t cbStatus;
 
1172
    char     achStatus[1]; /* UTF8 status string. */
 
1173
} VRDECLIENTSTATUS;
 
1174
 
1161
1175
/* A framebuffer description. */
1162
1176
typedef struct _VRDEFRAMEBUFFERINFO
1163
1177
{