mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[ZIPFLDR] Show icon on the taskbar (#4670)
This commit is contained in:
parent
a1f6d8a3f6
commit
d5382f91e6
3 changed files with 11 additions and 6 deletions
|
@ -334,7 +334,7 @@ public:
|
|||
void runWizard()
|
||||
{
|
||||
PROPSHEETHEADERW psh = { sizeof(psh), 0 };
|
||||
psh.dwFlags = PSH_WIZARD97 | PSH_HEADER;
|
||||
psh.dwFlags = PSH_WIZARD97 | PSH_HEADER | PSH_USEICONID;
|
||||
psh.hInstance = _AtlBaseModule.GetResourceInstance();
|
||||
|
||||
CExtractSettingsPage extractPage(this, &m_Password);
|
||||
|
@ -347,6 +347,7 @@ public:
|
|||
|
||||
psh.phpage = hpsp;
|
||||
psh.nPages = _countof(hpsp);
|
||||
psh.pszIcon = MAKEINTRESOURCE(IDI_ZIPFLDR);
|
||||
psh.pszbmWatermark = MAKEINTRESOURCE(IDB_WATERMARK);
|
||||
psh.pszbmHeader = MAKEINTRESOURCE(IDB_HEADER);
|
||||
|
||||
|
|
|
@ -1,12 +1,15 @@
|
|||
#pragma once
|
||||
|
||||
/* Icons */
|
||||
#define IDI_ZIPFLDR 1
|
||||
|
||||
/* Bitmaps */
|
||||
#define IDB_ZIPFLDR 164
|
||||
#define IDB_HEADER 200
|
||||
#define IDB_WATERMARK 201
|
||||
|
||||
/* registry stuff */
|
||||
#define IDR_ZIPFLDR 8000
|
||||
#define IDR_ZIPFLDR 8000
|
||||
|
||||
|
||||
/* Dialogs */
|
||||
|
|
|
@ -3,10 +3,11 @@
|
|||
|
||||
#include "resource.h"
|
||||
|
||||
164 BITMAP "res/zipfldr.bmp"
|
||||
200 BITMAP "res/header.bmp"
|
||||
201 BITMAP "res/watermark.bmp"
|
||||
1 ICON "res/zipfldr.ico"
|
||||
IDI_ZIPFLDR ICON "res/zipfldr.ico"
|
||||
|
||||
IDB_ZIPFLDR BITMAP "res/zipfldr.bmp"
|
||||
IDB_HEADER BITMAP "res/header.bmp"
|
||||
IDB_WATERMARK BITMAP "res/watermark.bmp"
|
||||
|
||||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Zip Shell Extension"
|
||||
|
|
Loading…
Reference in a new issue