sample client: fix ReceiveChannelData prototype

This commit is contained in:
Bernhard Miklautz 2014-04-16 10:20:47 +02:00
parent b8cf4a2304
commit 117112d20f
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ void tf_end_paint(rdpContext* context)
return;
}
int tf_receive_channel_data(freerdp* instance, int channelId, BYTE* data, int size, int flags, int total_size)
int tf_receive_channel_data(freerdp* instance, UINT16 channelId, BYTE* data, int size, int flags, int total_size)
{
return freerdp_channels_data(instance, channelId, data, size, flags, total_size);
}