From: Alex Henrie <alexhenrie24@gmail.com> This is the icon that was used on the Windows 95 shutdown dialog. Later versions of the shutdown dialog used a generic computer icon without depicting the flash of light as the CRT monitor turns off, so for now just use the generic computer icon in this spot. --- dlls/shell32/shell32.rc | 4 ++++ dlls/shell32/shresdef.h | 2 ++ 2 files changed, 6 insertions(+) diff --git a/dlls/shell32/shell32.rc b/dlls/shell32/shell32.rc index e7dacf13d1e..fda44525fca 100644 --- a/dlls/shell32/shell32.rc +++ b/dlls/shell32/shell32.rc @@ -1072,6 +1072,10 @@ IDI_SHELL_WEB_BROWSER ICON resources/internet.ico /* @makedep: resources/info.ico */ IDI_SHELL_INFO ICON resources/info.ico +/* FIXME: Following resource is not yet added */ +/* @makedep: resources/mycomputer.ico */ +IDI_SHELL_COMPUTER_OFF ICON resources/mycomputer.ico + /* @makedep: resources/idb_sort_incr.bmp */ IDB_SORT_INCR BITMAP resources/idb_sort_incr.bmp diff --git a/dlls/shell32/shresdef.h b/dlls/shell32/shresdef.h index dfa7c7ffbfd..029655be23b 100644 --- a/dlls/shell32/shresdef.h +++ b/dlls/shell32/shresdef.h @@ -377,6 +377,8 @@ #define IDI_SHELL_WEB_BROWSER 512 /* 512 - 1000 not used on Windows */ #define IDI_SHELL_INFO 1001 +/* 1012 - 8239 not used on Windows */ +#define IDI_SHELL_COMPUTER_OFF 8240 /* AVI resources, windows shell32 has 14 of them: 150-152 and 160-170 -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10988