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
63895aaf
Commit
63895aaf
authored
Oct 18, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledb32: Return INT_PTR instead of LRESULT in dialog procedures.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4b7f0a5d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
dslocator.c
dlls/oledb32/dslocator.c
+4
-4
No files found.
dlls/oledb32/dslocator.c
View file @
63895aaf
...
...
@@ -329,7 +329,7 @@ static void add_connections_providers(HWND lv)
RegCloseKey
(
key
);
}
static
LRESULT
CALLBACK
data_link_properties_dlg_proc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wp
,
LPARAM
lp
)
static
INT_PTR
CALLBACK
data_link_properties_dlg_proc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wp
,
LPARAM
lp
)
{
TRACE
(
"(%p, %08x, %08lx, %08lx)
\n
"
,
hwnd
,
msg
,
wp
,
lp
);
...
...
@@ -477,7 +477,7 @@ static void connection_toggle_controls(HWND parent)
EnableWindow
(
GetDlgItem
(
parent
,
IDC_BTN_BUILD
),
!
checked
);
}
static
LRESULT
CALLBACK
data_link_connection_dlg_proc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wp
,
LPARAM
lp
)
static
INT_PTR
CALLBACK
data_link_connection_dlg_proc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wp
,
LPARAM
lp
)
{
TRACE
(
"(%p, %08x, %08lx, %08lx)
\n
"
,
hwnd
,
msg
,
wp
,
lp
);
...
...
@@ -549,7 +549,7 @@ static void advanced_fill_permission_list(HWND parent)
}
}
static
LRESULT
CALLBACK
data_link_advanced_dlg_proc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wp
,
LPARAM
lp
)
static
INT_PTR
CALLBACK
data_link_advanced_dlg_proc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wp
,
LPARAM
lp
)
{
TRACE
(
"(%p, %08x, %08lx, %08lx)
\n
"
,
hwnd
,
msg
,
wp
,
lp
);
...
...
@@ -593,7 +593,7 @@ static void create_page_all_columns(HWND lv)
SendMessageW
(
lv
,
LVM_INSERTCOLUMNW
,
0
,
(
LPARAM
)
&
column
);
}
static
LRESULT
CALLBACK
data_link_all_dlg_proc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wp
,
LPARAM
lp
)
static
INT_PTR
CALLBACK
data_link_all_dlg_proc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wp
,
LPARAM
lp
)
{
TRACE
(
"(%p, %08x, %08lx, %08lx)
\n
"
,
hwnd
,
msg
,
wp
,
lp
);
...
...
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