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
e54ab7a8
Commit
e54ab7a8
authored
Dec 06, 2011
by
Hans Leidekker
Committed by
Alexandre Julliard
Dec 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add stub implementations of MessageBoxTimeoutA/W.
parent
c56c7433
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
msgbox.c
dlls/user32/msgbox.c
+20
-0
user32.spec
dlls/user32/user32.spec
+2
-2
No files found.
dlls/user32/msgbox.c
View file @
e54ab7a8
...
@@ -454,6 +454,26 @@ INT WINAPI MessageBoxExW( HWND hWnd, LPCWSTR text, LPCWSTR title,
...
@@ -454,6 +454,26 @@ INT WINAPI MessageBoxExW( HWND hWnd, LPCWSTR text, LPCWSTR title,
}
}
/**************************************************************************
/**************************************************************************
* MessageBoxTimeoutA (USER32.@)
*/
INT
WINAPI
MessageBoxTimeoutA
(
HWND
hWnd
,
LPCSTR
text
,
LPCSTR
title
,
UINT
type
,
WORD
langid
,
DWORD
timeout
)
{
FIXME
(
"timeout not supported (%u)
\n
"
,
timeout
);
return
MessageBoxExA
(
hWnd
,
text
,
title
,
type
,
langid
);
}
/**************************************************************************
* MessageBoxTimeoutW (USER32.@)
*/
INT
WINAPI
MessageBoxTimeoutW
(
HWND
hWnd
,
LPCWSTR
text
,
LPCWSTR
title
,
UINT
type
,
WORD
langid
,
DWORD
timeout
)
{
FIXME
(
"timeout not supported (%u)
\n
"
,
timeout
);
return
MessageBoxExW
(
hWnd
,
text
,
title
,
type
,
langid
);
}
/**************************************************************************
* MessageBoxIndirectA (USER32.@)
* MessageBoxIndirectA (USER32.@)
*/
*/
INT
WINAPI
MessageBoxIndirectA
(
LPMSGBOXPARAMSA
msgbox
)
INT
WINAPI
MessageBoxIndirectA
(
LPMSGBOXPARAMSA
msgbox
)
...
...
dlls/user32/user32.spec
View file @
e54ab7a8
...
@@ -498,8 +498,8 @@
...
@@ -498,8 +498,8 @@
@ stdcall MessageBoxExW(long wstr wstr long long)
@ stdcall MessageBoxExW(long wstr wstr long long)
@ stdcall MessageBoxIndirectA(ptr)
@ stdcall MessageBoxIndirectA(ptr)
@ stdcall MessageBoxIndirectW(ptr)
@ stdcall MessageBoxIndirectW(ptr)
# @ stub MessageBoxTimeoutA
@ stdcall MessageBoxTimeoutA(long str str long long long)
# @ stub MessageBoxTimeoutW
@ stdcall MessageBoxTimeoutW(long wstr wstr long long long)
@ stdcall MessageBoxW(long wstr wstr long)
@ stdcall MessageBoxW(long wstr wstr long)
# @ stub ModifyAccess
# @ stub ModifyAccess
@ stdcall ModifyMenuA(long long long long ptr)
@ stdcall ModifyMenuA(long long long long ptr)
...
...
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