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
a5ef61e0
Commit
a5ef61e0
authored
Jul 26, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Jul 28, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
appwiz.cpl: Fix compilation on systems that don't support nameless unions.
parent
fe1ce0e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
appwiz.c
dlls/appwiz.cpl/appwiz.c
+7
-5
No files found.
dlls/appwiz.cpl/appwiz.c
View file @
a5ef61e0
...
...
@@ -23,6 +23,8 @@
*
*/
#define NONAMELESSUNION
#include "config.h"
#include "wine/port.h"
#include "wine/unicode.h"
...
...
@@ -708,8 +710,8 @@ static void StartApplet(HWND hWnd)
psp
.
dwSize
=
sizeof
(
PROPSHEETPAGEW
);
psp
.
dwFlags
=
PSP_USETITLE
;
psp
.
hInstance
=
hInst
;
psp
.
pszTemplate
=
MAKEINTRESOURCEW
(
IDD_MAIN
);
psp
.
pszIcon
=
NULL
;
psp
.
u
.
pszTemplate
=
MAKEINTRESOURCEW
(
IDD_MAIN
);
psp
.
u2
.
pszIcon
=
NULL
;
psp
.
pfnDlgProc
=
(
DLGPROC
)
MainDlgProc
;
psp
.
pszTitle
=
tab_title
;
psp
.
lParam
=
0
;
...
...
@@ -719,12 +721,12 @@ static void StartApplet(HWND hWnd)
psh
.
dwFlags
=
PSH_PROPSHEETPAGE
|
PSH_USEICONID
;
psh
.
hwndParent
=
hWnd
;
psh
.
hInstance
=
hInst
;
psh
.
pszIcon
=
NULL
;
psh
.
u
.
pszIcon
=
NULL
;
psh
.
pszCaption
=
app_title
;
psh
.
nPages
=
1
;
psh
.
ppsp
=
&
psp
;
psh
.
u3
.
ppsp
=
&
psp
;
psh
.
pfnCallback
=
NULL
;
psh
.
nStartPage
=
0
;
psh
.
u2
.
nStartPage
=
0
;
/* Display the property sheet */
PropertySheetW
(
&
psh
);
...
...
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