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
214a01ac
Commit
214a01ac
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 a header bitmap to CryptUIWizImport's interior pages.
parent
56c7b55d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
1 deletion
+6
-1
certheader.bmp
dlls/cryptui/certheader.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
+2
-1
No files found.
dlls/cryptui/certheader.bmp
0 → 100644
View file @
214a01ac
1.46 KB
dlls/cryptui/cryptui.rc
View file @
214a01ac
...
...
@@ -43,4 +43,7 @@ IDB_CHECKS BITMAP LOADONCALL DISCARDABLE checks.bmp
/* @makedep: certwatermark.bmp */
IDB_CERT_WATERMARK BITMAP LOADONCALL DISCARDABLE certwatermark.bmp
/* @makedep: certheader.bmp */
IDB_CERT_HEADER BITMAP LOADONCALL DISCARDABLE certheader.bmp
#include "cryptui_En.rc"
dlls/cryptui/cryptuires.h
View file @
214a01ac
...
...
@@ -137,6 +137,7 @@
#define IDB_CERT_WARNING 203
#define IDB_CHECKS 204
#define IDB_CERT_WATERMARK 205
#define IDB_CERT_HEADER 206
#define IDC_STATIC 2000
#define IDC_CERTIFICATE_ICON 2001
...
...
dlls/cryptui/main.c
View file @
214a01ac
...
...
@@ -4350,7 +4350,7 @@ 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_
NEW
|
PSH_HEADER
|
PSH_WATERMARK
;
hdr
.
hInstance
=
hInstance
;
if
(
pwszWizardTitle
)
...
...
@@ -4360,6 +4360,7 @@ static BOOL show_import_ui(DWORD dwFlags, HWND hwndParent,
hdr
.
u3
.
ppsp
=
pages
;
hdr
.
nPages
=
nPages
;
hdr
.
u4
.
pszbmWatermark
=
MAKEINTRESOURCEW
(
IDB_CERT_WATERMARK
);
hdr
.
u5
.
pszbmHeader
=
MAKEINTRESOURCEW
(
IDB_CERT_HEADER
);
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