mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
win: Fix compilation error
MSDN said, "These are pre-Win32 error codes and are no longer supported or defined in any public header file."
This commit is contained in:
@@ -189,7 +189,8 @@ bool MoveItemToTrash(const base::FilePath& path) {
|
||||
// an empty directory and some return 0x402 when they should be returning
|
||||
// ERROR_FILE_NOT_FOUND. MSDN says Vista and up won't return 0x402. Windows 7
|
||||
// can return DE_INVALIDFILES (0x7C) for nonexistent directories.
|
||||
return (err == 0 || err == ERROR_FILE_NOT_FOUND || err == DE_INVALIDFILES);
|
||||
return (err == 0 || err == ERROR_FILE_NOT_FOUND || err == 0x402 ||
|
||||
err == 0x7C);
|
||||
}
|
||||
|
||||
void Beep() {
|
||||
|
||||
Reference in New Issue
Block a user