Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ed412aeb
Commit
ed412aeb
authored
Jul 13, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inetcpl.cpl: Use nameless unions/structs.
parent
6431b958
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
inetcpl.c
dlls/inetcpl.cpl/inetcpl.c
+6
-7
No files found.
dlls/inetcpl.cpl/inetcpl.c
View file @
ed412aeb
...
...
@@ -19,7 +19,6 @@
*
*/
#define NONAMELESSUNION
#define COBJMACROS
#define CONST_VTABLE
...
...
@@ -108,25 +107,25 @@ static void display_cpl_sheets(HWND parent)
/* Fill out all PROPSHEETPAGE */
psp
[
id
].
dwSize
=
sizeof
(
PROPSHEETPAGEW
);
psp
[
id
].
hInstance
=
hcpl
;
psp
[
id
].
u
.
pszTemplate
=
MAKEINTRESOURCEW
(
IDD_GENERAL
);
psp
[
id
].
pszTemplate
=
MAKEINTRESOURCEW
(
IDD_GENERAL
);
psp
[
id
].
pfnDlgProc
=
general_dlgproc
;
id
++
;
psp
[
id
].
dwSize
=
sizeof
(
PROPSHEETPAGEW
);
psp
[
id
].
hInstance
=
hcpl
;
psp
[
id
].
u
.
pszTemplate
=
MAKEINTRESOURCEW
(
IDD_SECURITY
);
psp
[
id
].
pszTemplate
=
MAKEINTRESOURCEW
(
IDD_SECURITY
);
psp
[
id
].
pfnDlgProc
=
security_dlgproc
;
id
++
;
psp
[
id
].
dwSize
=
sizeof
(
PROPSHEETPAGEW
);
psp
[
id
].
hInstance
=
hcpl
;
psp
[
id
].
u
.
pszTemplate
=
MAKEINTRESOURCEW
(
IDD_CONTENT
);
psp
[
id
].
pszTemplate
=
MAKEINTRESOURCEW
(
IDD_CONTENT
);
psp
[
id
].
pfnDlgProc
=
content_dlgproc
;
id
++
;
psp
[
id
].
dwSize
=
sizeof
(
PROPSHEETPAGEW
);
psp
[
id
].
hInstance
=
hcpl
;
psp
[
id
].
u
.
pszTemplate
=
MAKEINTRESOURCEW
(
IDD_CONNECTIONS
);
psp
[
id
].
pszTemplate
=
MAKEINTRESOURCEW
(
IDD_CONNECTIONS
);
psp
[
id
].
pfnDlgProc
=
connections_dlgproc
;
id
++
;
...
...
@@ -135,10 +134,10 @@ static void display_cpl_sheets(HWND parent)
psh
.
dwFlags
=
PSH_PROPSHEETPAGE
|
PSH_USEICONID
|
PSH_USECALLBACK
;
psh
.
hwndParent
=
parent
;
psh
.
hInstance
=
hcpl
;
psh
.
u
.
pszIcon
=
MAKEINTRESOURCEW
(
ICO_MAIN
);
psh
.
pszIcon
=
MAKEINTRESOURCEW
(
ICO_MAIN
);
psh
.
pszCaption
=
MAKEINTRESOURCEW
(
IDS_CPL_NAME
);
psh
.
nPages
=
id
;
psh
.
u3
.
ppsp
=
psp
;
psh
.
ppsp
=
psp
;
psh
.
pfnCallback
=
propsheet_callback
;
/* display the dialog */
...
...
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