https://git.reactos.org/?p=reactos.git;a=commitdiff;h=29955aa2315f11f13b86c9...
commit 29955aa2315f11f13b86c9d5a067e6b24dfc5151 Author: Eric Kohl eric.kohl@reactos.org AuthorDate: Sun Mar 25 14:46:44 2018 +0200 Commit: Eric Kohl eric.kohl@reactos.org CommitDate: Sun Mar 25 14:50:02 2018 +0200
[SNDVOL32] Create small speaker icons from the default sndvol32 icon --- base/applications/sndvol32/resources.h | 4 +++- base/applications/sndvol32/resources/speaker_left.ico | Bin 0 -> 2862 bytes base/applications/sndvol32/resources/speaker_right.ico | Bin 0 -> 2862 bytes base/applications/sndvol32/sndvol32.rc | 2 ++ 4 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/base/applications/sndvol32/resources.h b/base/applications/sndvol32/resources.h index eb4ef5fa2c..92d3dada2e 100644 --- a/base/applications/sndvol32/resources.h +++ b/base/applications/sndvol32/resources.h @@ -2,7 +2,9 @@
#define IDM_MAINMENU 101
-#define IDI_MAINAPP 304 +#define IDI_MAINAPP 301 +#define IDI_SPEAKER_LEFT 302 +#define IDI_SPEAKER_RIGHT 303
#define IDC_PROPERTIES 1001 #define IDC_ADVANCED_CONTROLS 1002 diff --git a/base/applications/sndvol32/resources/speaker_left.ico b/base/applications/sndvol32/resources/speaker_left.ico new file mode 100644 index 0000000000..a06c49c49e Binary files /dev/null and b/base/applications/sndvol32/resources/speaker_left.ico differ diff --git a/base/applications/sndvol32/resources/speaker_right.ico b/base/applications/sndvol32/resources/speaker_right.ico new file mode 100644 index 0000000000..5708797183 Binary files /dev/null and b/base/applications/sndvol32/resources/speaker_right.ico differ diff --git a/base/applications/sndvol32/sndvol32.rc b/base/applications/sndvol32/sndvol32.rc index 9545cdde30..08b208b711 100644 --- a/base/applications/sndvol32/sndvol32.rc +++ b/base/applications/sndvol32/sndvol32.rc @@ -14,6 +14,8 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
IDI_MAINAPP ICON "resources/sndvol32.ico" +IDI_SPEAKER_LEFT ICON "resources/speaker_left.ico" +IDI_SPEAKER_RIGHT ICON "resources/speaker_right.ico"
/* UTF-8 */ #pragma code_page(65001)