feat(dvc): add CreationStatus::NOT_FOUND

For completeness, this error is used by FreeRDP.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
Marc-André Lureau
2025-01-27 07:35:36 -05:00
committed by Benoît Cortier
parent 265b661b81
commit ab8a87d942
+1
View File
@@ -538,6 +538,7 @@ pub struct CreationStatus(u32);
impl CreationStatus {
pub const OK: Self = Self(0x00000000);
pub const NOT_FOUND: Self = Self(0xC0000225);
pub const NO_LISTENER: Self = Self(0xC0000001);
fn encode(&self, dst: &mut WriteCursor<'_>) -> EncodeResult<()> {