Split up some stubs into their own files.

svn path=/trunk/; revision=3068
This commit is contained in:
David Welch 2002-06-13 20:36:40 +00:00
parent e019c02170
commit fd2a5c35a4
33 changed files with 4412 additions and 3621 deletions

View file

@ -1,4 +1,4 @@
/* $Id: message.c,v 1.5 2002/05/06 22:20:31 dwelch Exp $
/* $Id: message.c,v 1.6 2002/06/13 20:36:40 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
@ -12,6 +12,78 @@
#include <user32.h>
#include <debug.h>
LPARAM
STDCALL
GetMessageExtraInfo(VOID)
{
return (LPARAM)0;
}
DWORD
STDCALL
GetMessagePos(VOID)
{
return 0;
}
LONG
STDCALL
GetMessageTime(VOID)
{
return 0;
}
WINBOOL
STDCALL
InSendMessage(VOID)
{
return FALSE;
}
DWORD
STDCALL
InSendMessageEx(
LPVOID lpReserved)
{
return 0;
}
WINBOOL
STDCALL
ReplyMessage(
LRESULT lResult)
{
return FALSE;
}
LPARAM
STDCALL
SetMessageExtraInfo(
LPARAM lParam)
{
return (LPARAM)0;
}
LRESULT
STDCALL
CallWindowProcA(
WNDPROC lpPrevWndFunc,
HWND hWnd,
UINT Msg,
WPARAM wParam,
LPARAM lParam)
{
return (LRESULT)0;
}
LRESULT
STDCALL
CallWindowProcW(
WNDPROC lpPrevWndFunc,
HWND hWnd,
UINT Msg,
WPARAM wParam,
LPARAM lParam)
{
return (LRESULT)0;
}
LPMSG
MsgiAnsiToUnicodeMessage(