mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +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
|
||||
ShowWindow@8
|
||||
ShowWindowAsync@8
|
||||
;SoftModalMessageBox
|
||||
SoftModalMessageBox@4
|
||||
SubtractRect@12
|
||||
SwapMouseButton@4
|
||||
SwitchDesktop@4
|
||||
|
|
|
@ -627,7 +627,7 @@ ShowScrollBar=ShowScrollBar@12
|
|||
;ShowStartGlass
|
||||
ShowWindow=ShowWindow@8
|
||||
ShowWindowAsync=ShowWindowAsync@8
|
||||
;SoftModalMessageBox
|
||||
SoftModalMessageBox=SoftModalMessageBox@4
|
||||
SubtractRect=SubtractRect@12
|
||||
SwapMouseButton=SwapMouseButton@4
|
||||
SwitchDesktop=SwitchDesktop@4
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* 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
|
||||
* FILE: lib/user32/windows/input.c
|
||||
|
@ -95,4 +95,11 @@ MessageBoxW(
|
|||
{
|
||||
return MessageBoxExW(hWnd, lpText, lpCaption, uType, 0);
|
||||
}
|
||||
|
||||
DWORD
|
||||
STDCALL
|
||||
SoftModalMessageBox (DWORD Unknown0)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue