From eda45f764835503e7fd6c27b6e19d10965fda542 Mon Sep 17 00:00:00 2001 From: Idan Raiter Date: Mon, 13 Feb 2023 18:44:26 -0800 Subject: [PATCH] crosvm_cli: Add missing Windows exit codes A few codes were added downstream and are not here. BUG=b:269174100 TEST=presubmit Change-Id: I6599cbc356fe77b6b9094361a620aada2d173e5b Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4246714 Reviewed-by: Daniel Verkamp Reviewed-by: Alexandre Courbot Commit-Queue: Idan Raiter --- crosvm_cli/src/sys/windows/exit.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crosvm_cli/src/sys/windows/exit.rs b/crosvm_cli/src/sys/windows/exit.rs index a120447865..2288bb0534 100644 --- a/crosvm_cli/src/sys/windows/exit.rs +++ b/crosvm_cli/src/sys/windows/exit.rs @@ -339,6 +339,9 @@ pub enum Exit { CreateImeThread = 0xE0000099, OpenDiskImage = 0xE000009A, VirtioSoundDeviceNew = 0xE000009B, + StartSpu = 0xE000009C, + SandboxCreateProcessAccessDenied = 0xE000009D, + SandboxCreateProcessElevationRequired = 0xE000009E, } impl From for ExitCode {