File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ enum class __std_win_error : unsigned long {
39
39
_Insufficient_buffer = 122 , // #define ERROR_INSUFFICIENT_BUFFER 122L
40
40
_Invalid_name = 123 , // #define ERROR_INVALID_NAME 123L
41
41
_Directory_not_empty = 145 , // #define ERROR_DIR_NOT_EMPTY 145L
42
+ _Bad_pathname = 161 , // #define ERROR_BAD_PATHNAME 161L
42
43
_Already_exists = 183 , // #define ERROR_ALREADY_EXISTS 183L
43
44
_Filename_exceeds_range = 206 , // #define ERROR_FILENAME_EXCED_RANGE 206L
44
45
_Directory_name_is_invalid = 267 , // #define ERROR_DIRECTORY 267L
@@ -54,6 +55,7 @@ _NODISCARD inline bool __std_is_file_not_found(const __std_win_error _Error) noe
54
55
case __std_win_error::_Path_not_found:
55
56
case __std_win_error::_Error_bad_netpath:
56
57
case __std_win_error::_Invalid_name:
58
+ case __std_win_error::_Bad_pathname:
57
59
case __std_win_error::_Directory_name_is_invalid: // Windows 11 24H2
58
60
case __std_win_error::_Error_netname_deleted: // Windows 11 24H2
59
61
return true ;
You can’t perform that action at this time.
0 commit comments