Skip to content

Commit ab8a87d

Browse files
elmarcoCBenoit
authored andcommitted
feat(dvc): add CreationStatus::NOT_FOUND
For completeness, this error is used by FreeRDP. Signed-off-by: Marc-André Lureau <[email protected]>
1 parent 265b661 commit ab8a87d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

crates/ironrdp-dvc/src/pdu.rs

+1
Original file line numberDiff line numberDiff line change
@@ -538,6 +538,7 @@ pub struct CreationStatus(u32);
538538

539539
impl CreationStatus {
540540
pub const OK: Self = Self(0x00000000);
541+
pub const NOT_FOUND: Self = Self(0xC0000225);
541542
pub const NO_LISTENER: Self = Self(0xC0000001);
542543

543544
fn encode(&self, dst: &mut WriteCursor<'_>) -> EncodeResult<()> {

0 commit comments

Comments
 (0)