refactor(core): move cursor.rs

Add documentation.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
Marc-André Lureau 2024-08-20 11:47:09 +04:00 committed by Benoît Cortier
parent 4154ceea05
commit 7419467ad3
161 changed files with 404 additions and 292 deletions

View file

@ -24,6 +24,7 @@ ironrdp-graphics.workspace = true
ironrdp-pdu = { workspace = true, features = ["std"] }
ironrdp-displaycontrol.workspace = true
tracing.workspace = true
ironrdp-core.workspace = true
[lints]
workspace = true

View file

@ -1,11 +1,11 @@
use std::rc::Rc;
use ironrdp_core::ReadCursor;
use ironrdp_graphics::image_processing::PixelFormat;
use ironrdp_graphics::pointer::{DecodedPointer, PointerBitmapTarget};
use ironrdp_graphics::rdp6::BitmapStreamDecoder;
use ironrdp_graphics::rle::RlePixelFormat;
use ironrdp_pdu::codecs::rfx::FrameAcknowledgePdu;
use ironrdp_pdu::cursor::ReadCursor;
use ironrdp_pdu::fast_path::{FastPathHeader, FastPathUpdate, FastPathUpdatePdu, Fragmentation};
use ironrdp_pdu::geometry::{InclusiveRectangle, Rectangle as _};
use ironrdp_pdu::pointer::PointerUpdateData;