mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 15:33:07 +00:00
SoftModalMessageBox stub added.
svn path=/trunk/; revision=4321
This commit is contained in:
parent
328caa7669
commit
c2f91bfad0
3 changed files with 10 additions and 3 deletions
|
@ -627,7 +627,7 @@ ShowScrollBar@12
|
||||||
;ShowStartGlass
|
;ShowStartGlass
|
||||||
ShowWindow@8
|
ShowWindow@8
|
||||||
ShowWindowAsync@8
|
ShowWindowAsync@8
|
||||||
;SoftModalMessageBox
|
SoftModalMessageBox@4
|
||||||
SubtractRect@12
|
SubtractRect@12
|
||||||
SwapMouseButton@4
|
SwapMouseButton@4
|
||||||
SwitchDesktop@4
|
SwitchDesktop@4
|
||||||
|
|
|
@ -627,7 +627,7 @@ ShowScrollBar=ShowScrollBar@12
|
||||||
;ShowStartGlass
|
;ShowStartGlass
|
||||||
ShowWindow=ShowWindow@8
|
ShowWindow=ShowWindow@8
|
||||||
ShowWindowAsync=ShowWindowAsync@8
|
ShowWindowAsync=ShowWindowAsync@8
|
||||||
;SoftModalMessageBox
|
SoftModalMessageBox=SoftModalMessageBox@4
|
||||||
SubtractRect=SubtractRect@12
|
SubtractRect=SubtractRect@12
|
||||||
SwapMouseButton=SwapMouseButton@4
|
SwapMouseButton=SwapMouseButton@4
|
||||||
SwitchDesktop=SwitchDesktop@4
|
SwitchDesktop=SwitchDesktop@4
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: messagebox.c,v 1.4 2003/03/16 17:01:45 ea Exp $
|
/* $Id: messagebox.c,v 1.5 2003/03/16 17:11:22 ea Exp $
|
||||||
*
|
*
|
||||||
* PROJECT: ReactOS user32.dll
|
* PROJECT: ReactOS user32.dll
|
||||||
* FILE: lib/user32/windows/input.c
|
* FILE: lib/user32/windows/input.c
|
||||||
|
@ -95,4 +95,11 @@ MessageBoxW(
|
||||||
{
|
{
|
||||||
return MessageBoxExW(hWnd, lpText, lpCaption, uType, 0);
|
return MessageBoxExW(hWnd, lpText, lpCaption, uType, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DWORD
|
||||||
|
STDCALL
|
||||||
|
SoftModalMessageBox (DWORD Unknown0)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue