mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
user32: Add stub implementations of MessageBoxTimeoutA/W.
This commit is contained in:
parent
c56c74331c
commit
e54ab7a8b6
2 changed files with 22 additions and 2 deletions
|
@ -453,6 +453,26 @@ INT WINAPI MessageBoxExW( HWND hWnd, LPCWSTR text, LPCWSTR title,
|
|||
return MessageBoxIndirectW(&msgbox);
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
* 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.@)
|
||||
*/
|
||||
|
|
|
@ -498,8 +498,8 @@
|
|||
@ stdcall MessageBoxExW(long wstr wstr long long)
|
||||
@ stdcall MessageBoxIndirectA(ptr)
|
||||
@ stdcall MessageBoxIndirectW(ptr)
|
||||
# @ stub MessageBoxTimeoutA
|
||||
# @ stub MessageBoxTimeoutW
|
||||
@ stdcall MessageBoxTimeoutA(long str str long long long)
|
||||
@ stdcall MessageBoxTimeoutW(long wstr wstr long long long)
|
||||
@ stdcall MessageBoxW(long wstr wstr long)
|
||||
# @ stub ModifyAccess
|
||||
@ stdcall ModifyMenuA(long long long long ptr)
|
||||
|
|
Loading…
Reference in a new issue