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
a4d7ca0f
Commit
a4d7ca0f
authored
Jan 04, 2000
by
Juergen Schmied
Committed by
Alexandre Julliard
Jan 04, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Corrected parameter count for DialogBoxIndirectParamAorW.
parent
e8256f58
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
user32.spec
relay32/user32.spec
+1
-1
dialog.c
windows/dialog.c
+15
-0
No files found.
relay32/user32.spec
View file @
a4d7ca0f
...
...
@@ -138,7 +138,7 @@ init MAIN_UserInit
134 stdcall DestroyMenu(long) DestroyMenu
135 stdcall DestroyWindow(long) DestroyWindow
136 stdcall DialogBoxIndirectParamA(long ptr long ptr long) DialogBoxIndirectParamA
137 stdcall DialogBoxIndirectParamAorW(long ptr long ptr long
) DialogBoxIndirectParamA
137 stdcall DialogBoxIndirectParamAorW(long ptr long ptr long
long) DialogBoxIndirectParamAorW
138 stdcall DialogBoxIndirectParamW(long ptr long ptr long) DialogBoxIndirectParamW
139 stdcall DialogBoxParamA(long str long ptr long) DialogBoxParamA
140 stdcall DialogBoxParamW(long wstr long ptr long) DialogBoxParamW
...
...
windows/dialog.c
View file @
a4d7ca0f
...
...
@@ -1065,6 +1065,21 @@ INT WINAPI DialogBoxIndirectParamW(HINSTANCE hInstance, LPCVOID template,
return
-
1
;
}
/***********************************************************************
* DialogBoxIndirectParamAorW (USER32.138)
*/
INT
WINAPI
DialogBoxIndirectParamAorW
(
HINSTANCE
hInstance
,
LPCVOID
template
,
HWND
owner
,
DLGPROC
dlgProc
,
LPARAM
param
,
DWORD
x
)
{
HWND
hwnd
;
FIXME
(
"0x%08x %p 0x%08x %p 0x%08lx 0x%08lx
\n
"
,
hInstance
,
template
,
owner
,
dlgProc
,
param
,
x
);
hwnd
=
CreateDialogIndirectParamW
(
hInstance
,
template
,
owner
,
dlgProc
,
param
);
if
(
hwnd
)
return
DIALOG_DoDialogBox
(
hwnd
,
owner
);
return
-
1
;
}
/***********************************************************************
* EndDialog16 (USER.88)
...
...
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