[client] spice: correct issue with new channel list support

This commit is contained in:
Geoffrey McRae
2019-02-21 05:31:51 +11:00
parent daf854c692
commit 07e4c1c20f
2 changed files with 12 additions and 5 deletions

View File

@@ -40,10 +40,17 @@ typedef struct SpiceMsgMainInit
}
SpiceMsgMainInit;
typedef struct SpiceChannelID
{
uint8_t type;
uint8_t channel_id;
}
SpiceChannelID;
typedef struct SpiceMsgMainChannelsList
{
uint32_t num_of_channels;
//uint8_t channels[num_of_channels]
//SpiceChannelID channels[num_of_channels]
}
SpiceMainChannelsList;