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
f2ae9e4b
Commit
f2ae9e4b
authored
Jun 07, 2006
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jun 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecfg: Avoid unnecessary casts.
parent
b4d5dd5e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
main.c
programs/winecfg/main.c
+4
-3
No files found.
programs/winecfg/main.c
View file @
f2ae9e4b
...
...
@@ -37,7 +37,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
winecfg
);
static
void
CALLBACK
static
INT
CALLBACK
PropSheetCallback
(
HWND
hWnd
,
UINT
uMsg
,
LPARAM
lParam
)
{
switch
(
uMsg
)
...
...
@@ -54,6 +54,7 @@ PropSheetCallback (HWND hWnd, UINT uMsg, LPARAM lParam)
default:
break
;
}
return
0
;
}
static
INT_PTR
CALLBACK
...
...
@@ -197,8 +198,8 @@ doPropertySheet (HINSTANCE hInstance, HWND hOwner)
psh
.
u
.
pszIcon
=
NULL
;
psh
.
pszCaption
=
load_string
(
IDS_WINECFG_TITLE
);
psh
.
nPages
=
NUM_PROPERTY_PAGES
;
psh
.
u3
.
ppsp
=
(
LPCPROPSHEETPAGEW
)
&
psp
;
psh
.
pfnCallback
=
(
PFNPROPSHEETCALLBACK
)
PropSheetCallback
;
psh
.
u3
.
ppsp
=
psp
;
psh
.
pfnCallback
=
PropSheetCallback
;
psh
.
u2
.
nStartPage
=
0
;
/*
...
...
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