core: addd missing PlaySound server callback
This commit is contained in:
parent
caeea1cbcd
commit
8482eed323
@ -936,6 +936,20 @@ static void update_send_bitmap_update(rdpContext* context, BITMAP_UPDATE* bitmap
|
|||||||
Stream_Release(s);
|
Stream_Release(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void update_send_play_sound(rdpContext* context, PLAY_SOUND_UPDATE* play_sound)
|
||||||
|
{
|
||||||
|
wStream* s;
|
||||||
|
rdpRdp* rdp = context->rdp;
|
||||||
|
|
||||||
|
if (!rdp->settings->ReceivedCapabilities[CAPSET_TYPE_SOUND]) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
s = rdp_data_pdu_init(rdp);
|
||||||
|
Stream_Write_UINT32(s, play_sound->duration);
|
||||||
|
Stream_Write_UINT32(s, play_sound->frequency);
|
||||||
|
rdp_send_data_pdu(rdp, s, DATA_PDU_TYPE_PLAY_SOUND, rdp->mcs->userId);
|
||||||
|
Stream_Release(s);
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Primary Drawing Orders
|
* Primary Drawing Orders
|
||||||
*/
|
*/
|
||||||
@ -1570,6 +1584,7 @@ void update_register_server_callbacks(rdpUpdate* update)
|
|||||||
update->SurfaceBits = update_send_surface_bits;
|
update->SurfaceBits = update_send_surface_bits;
|
||||||
update->SurfaceFrameMarker = update_send_surface_frame_marker;
|
update->SurfaceFrameMarker = update_send_surface_frame_marker;
|
||||||
update->SurfaceCommand = update_send_surface_command;
|
update->SurfaceCommand = update_send_surface_command;
|
||||||
|
update->PlaySound = update_send_play_sound;
|
||||||
update->primary->DstBlt = update_send_dstblt;
|
update->primary->DstBlt = update_send_dstblt;
|
||||||
update->primary->PatBlt = update_send_patblt;
|
update->primary->PatBlt = update_send_patblt;
|
||||||
update->primary->ScrBlt = update_send_scrblt;
|
update->primary->ScrBlt = update_send_scrblt;
|
||||||
|
Loading…
Reference in New Issue
Block a user