We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c69d6c8 commit e27a8b5Copy full SHA for e27a8b5
src/libstd/sys/windows/c.rs
@@ -161,6 +161,8 @@ pub const STD_ERROR_HANDLE: DWORD = -12i32 as DWORD;
161
162
pub const PROGRESS_CONTINUE: DWORD = 0;
163
164
+// List of Windows system error codes with descriptions:
165
+// https://docs.microsoft.com/en-us/windows/win32/debug/system-error-codes#system-error-codes
166
pub const ERROR_FILE_NOT_FOUND: DWORD = 2;
167
pub const ERROR_PATH_NOT_FOUND: DWORD = 3;
168
pub const ERROR_ACCESS_DENIED: DWORD = 5;
0 commit comments