Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
56c7b55d
Commit
56c7b55d
authored
Dec 24, 2008
by
Juan Lang
Committed by
Alexandre Julliard
Dec 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cryptui: Add watermark image to welcome and finish pages of CryptUIWizImport.
parent
27d9903e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
1 deletion
+7
-1
certwatermark.bmp
dlls/cryptui/certwatermark.bmp
+0
-0
cryptui.rc
dlls/cryptui/cryptui.rc
+3
-0
cryptuires.h
dlls/cryptui/cryptuires.h
+1
-0
main.c
dlls/cryptui/main.c
+3
-1
No files found.
dlls/cryptui/certwatermark.bmp
0 → 100644
View file @
56c7b55d
51.6 KB
dlls/cryptui/cryptui.rc
View file @
56c7b55d
...
...
@@ -40,4 +40,7 @@ IDB_CERT_WARNING BITMAP LOADONCALL DISCARDABLE certwarning.bmp
/* @makedep: checks.bmp */
IDB_CHECKS BITMAP LOADONCALL DISCARDABLE checks.bmp
/* @makedep: certwatermark.bmp */
IDB_CERT_WATERMARK BITMAP LOADONCALL DISCARDABLE certwatermark.bmp
#include "cryptui_En.rc"
dlls/cryptui/cryptuires.h
View file @
56c7b55d
...
...
@@ -136,6 +136,7 @@
#define IDB_CERT_ERROR 202
#define IDB_CERT_WARNING 203
#define IDB_CHECKS 204
#define IDB_CERT_WATERMARK 205
#define IDC_STATIC 2000
#define IDC_CERTIFICATE_ICON 2001
...
...
dlls/cryptui/main.c
View file @
56c7b55d
...
...
@@ -4350,7 +4350,8 @@ static BOOL show_import_ui(DWORD dwFlags, HWND hwndParent,
memset
(
&
hdr
,
0
,
sizeof
(
hdr
));
hdr
.
dwSize
=
sizeof
(
hdr
);
hdr
.
hwndParent
=
hwndParent
;
hdr
.
dwFlags
=
PSH_PROPSHEETPAGE
|
PSH_WIZARD97_OLD
|
PSH_HEADER
;
hdr
.
dwFlags
=
PSH_PROPSHEETPAGE
|
PSH_WIZARD97_OLD
|
PSH_HEADER
|
PSH_WATERMARK
;
hdr
.
hInstance
=
hInstance
;
if
(
pwszWizardTitle
)
hdr
.
pszCaption
=
pwszWizardTitle
;
...
...
@@ -4358,6 +4359,7 @@ static BOOL show_import_ui(DWORD dwFlags, HWND hwndParent,
hdr
.
pszCaption
=
MAKEINTRESOURCEW
(
IDS_IMPORT_WIZARD
);
hdr
.
u3
.
ppsp
=
pages
;
hdr
.
nPages
=
nPages
;
hdr
.
u4
.
pszbmWatermark
=
MAKEINTRESOURCEW
(
IDB_CERT_WATERMARK
);
PropertySheetW
(
&
hdr
);
HeapFree
(
GetProcessHeap
(),
0
,
data
.
fileName
);
if
(
data
.
freeSource
&&
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment