mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-08-04 15:18:17 +00:00
feat(displaycontrol): dynamic resolution PDUs (#366)
This commit is contained in:
parent
da009da927
commit
d53a5321b2
15 changed files with 809 additions and 4 deletions
|
@ -15,4 +15,5 @@ ironrdp-graphics.workspace = true
|
|||
ironrdp-pdu.workspace = true
|
||||
ironrdp-cliprdr.workspace = true
|
||||
ironrdp-rdpdr.workspace = true
|
||||
ironrdp-cliprdr-format.workspace = true
|
||||
ironrdp-cliprdr-format.workspace = true
|
||||
ironrdp-displaycontrol.workspace = true
|
|
@ -76,6 +76,8 @@ pub fn pdu_decode(data: &[u8]) {
|
|||
let _ = decode::<ironrdp_cliprdr::pdu::ClipboardPdu<'_>>(data);
|
||||
|
||||
let _ = decode::<ironrdp_rdpdr::pdu::RdpdrPdu>(data);
|
||||
|
||||
let _ = decode::<ironrdp_displaycontrol::pdu::DisplayControlPdu>(data);
|
||||
}
|
||||
|
||||
pub fn rle_decompress_bitmap(input: BitmapInput<'_>) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue