mirror of
https://github.com/reactos/reactos.git
synced 2025-05-25 04:03:56 +00:00
[shimgvw]
Add icons for different images by Jared Smudde CORE-9926 #resolve #comment Committed, thx for help ^^ svn path=/trunk/; revision=68637
This commit is contained in:
parent
ae64df8016
commit
9a0ca4df5e
4 changed files with 5 additions and 3 deletions
|
@ -166,19 +166,19 @@ HKCR,"jpegfile\shell\open\command","",0x00020000,"rundll32.exe %SystemRoot%\syst
|
||||||
; Bitmap Images
|
; Bitmap Images
|
||||||
HKCR,".bmp","",0x00000000,"bmpfile"
|
HKCR,".bmp","",0x00000000,"bmpfile"
|
||||||
HKCR,"bmpfile","",0x00000000,"Bitmap Image"
|
HKCR,"bmpfile","",0x00000000,"Bitmap Image"
|
||||||
HKCR,"bmpfile\DefaultIcon","",0x00020000,"%SystemRoot%\system32\shimgvw.dll,0"
|
HKCR,"bmpfile\DefaultIcon","",0x00020000,"%SystemRoot%\system32\shimgvw.dll,1"
|
||||||
HKCR,"bmpfile\shell\open\command","",0x00020000,"rundll32.exe %SystemRoot%\system32\shimgvw.dll,ImageView_Fullscreen %1"
|
HKCR,"bmpfile\shell\open\command","",0x00020000,"rundll32.exe %SystemRoot%\system32\shimgvw.dll,ImageView_Fullscreen %1"
|
||||||
|
|
||||||
; PNG Images
|
; PNG Images
|
||||||
HKCR,".png","",0x00000000,"pngfile"
|
HKCR,".png","",0x00000000,"pngfile"
|
||||||
HKCR,"pngfile","",0x00000000,"PNG Image"
|
HKCR,"pngfile","",0x00000000,"PNG Image"
|
||||||
HKCR,"pngfile\DefaultIcon","",0x00020000,"%SystemRoot%\system32\shimgvw.dll,0"
|
HKCR,"pngfile\DefaultIcon","",0x00020000,"%SystemRoot%\system32\shimgvw.dll,2"
|
||||||
HKCR,"pngfile\shell\open\command","",0x00020000,"rundll32.exe %SystemRoot%\system32\shimgvw.dll,ImageView_Fullscreen %1"
|
HKCR,"pngfile\shell\open\command","",0x00020000,"rundll32.exe %SystemRoot%\system32\shimgvw.dll,ImageView_Fullscreen %1"
|
||||||
|
|
||||||
; GIF Images
|
; GIF Images
|
||||||
HKCR,".gif","",0x00000000,"giffile"
|
HKCR,".gif","",0x00000000,"giffile"
|
||||||
HKCR,"giffile","",0x00000000,"GIF Image"
|
HKCR,"giffile","",0x00000000,"GIF Image"
|
||||||
HKCR,"giffile\DefaultIcon","",0x00020000,"%SystemRoot%\system32\shimgvw.dll,0"
|
HKCR,"giffile\DefaultIcon","",0x00020000,"%SystemRoot%\system32\shimgvw.dll,2"
|
||||||
HKCR,"giffile\shell\open\command","",0x00020000,"""%programfiles%\Internet Explorer\iexplore.exe"" %1"
|
HKCR,"giffile\shell\open\command","",0x00020000,"""%programfiles%\Internet Explorer\iexplore.exe"" %1"
|
||||||
|
|
||||||
; Configuration Files
|
; Configuration Files
|
||||||
|
|
BIN
reactos/dll/win32/shimgvw/res/bmp.ico
Normal file
BIN
reactos/dll/win32/shimgvw/res/bmp.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 26 KiB |
BIN
reactos/dll/win32/shimgvw/res/png.ico
Normal file
BIN
reactos/dll/win32/shimgvw/res/png.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 26 KiB |
|
@ -9,6 +9,8 @@
|
||||||
#include <reactos/version.rc>
|
#include <reactos/version.rc>
|
||||||
|
|
||||||
IDI_APPICON ICON "res/main.ico"
|
IDI_APPICON ICON "res/main.ico"
|
||||||
|
IDI_BMP_ICON ICON "res/bmp.ico"
|
||||||
|
IDI_PNG_ICON ICON "res/png.ico"
|
||||||
|
|
||||||
IDB_PREVICON BITMAP "res/prev.bmp"
|
IDB_PREVICON BITMAP "res/prev.bmp"
|
||||||
IDB_NEXTICON BITMAP "res/next.bmp"
|
IDB_NEXTICON BITMAP "res/next.bmp"
|
||||||
|
|
Loading…
Reference in a new issue