Skip to content

Commit 655053e

Browse files
committed
Windows error codes: Add two missing ones
For some reason these aren't in the mingw list. We'll need them shortly. Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
1 parent 8a4b1e4 commit 655053e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

library/std/src/sys/windows/c/errors.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55

66
use super::{c_int, DWORD};
77

8+
pub const ERROR_DIRECTORY_NOT_SUPPORTED: DWORD = 336;
89
pub const ERROR_DRIVER_CANCEL_TIMEOUT: DWORD = 594;
10+
pub const ERROR_DISK_QUOTA_EXCEEDED: DWORD = 1295;
911
pub const ERROR_RESOURCE_CALL_TIMED_OUT: DWORD = 5910;
1012
pub const FRS_ERR_SYSVOL_POPULATE_TIMEOUT: DWORD = 8014;
1113
pub const DNS_ERROR_RECORD_TIMED_OUT: DWORD = 9705;

0 commit comments

Comments
 (0)