mirror of
https://github.com/reactos/reactos.git
synced 2025-04-18 03:34:11 +00:00
[Win32k|User32]
- Correct more types. svn path=/trunk/; revision=54397
This commit is contained in:
parent
cf1e809fa2
commit
afe0f6cd2b
3 changed files with 6 additions and 5 deletions
|
@ -2369,7 +2369,7 @@ SendMessageTimeoutA(
|
|||
UcMsg.wParam,
|
||||
UcMsg.lParam,
|
||||
(ULONG_PTR)&dsm,
|
||||
FNID_SENDMESSAGETIMEOUT,
|
||||
FNID_SENDMESSAGEWTOOPTION,
|
||||
TRUE);
|
||||
|
||||
MsgiAnsiToUnicodeReply(&UcMsg, &AnsiMsg, &Result);
|
||||
|
@ -2436,7 +2436,7 @@ SendMessageTimeoutW(
|
|||
wParam,
|
||||
lParam,
|
||||
(ULONG_PTR)&dsm,
|
||||
FNID_SENDMESSAGETIMEOUT,
|
||||
FNID_SENDMESSAGEWTOOPTION,
|
||||
FALSE);
|
||||
|
||||
if (lpdwResult) *lpdwResult = dsm.Result;
|
||||
|
|
|
@ -696,7 +696,7 @@ typedef LONG_PTR (NTAPI *PFN_FNID)(PWND, UINT, WPARAM, LPARAM, ULONG_PTR);
|
|||
#define FNID_SENDMESSAGEFF 0x02B2
|
||||
// Kernel has option to use TimeOut or normal msg send, based on type of msg.
|
||||
#define FNID_SENDMESSAGEWTOOPTION 0x02B3
|
||||
#define FNID_SENDMESSAGETIMEOUT 0x02B4
|
||||
#define FNID_SENDMESSAGECALLPROC 0x02B4
|
||||
#define FNID_BROADCASTSYSTEMMESSAGE 0x02B5
|
||||
#define FNID_TOOLTIPS 0x02B6
|
||||
#define FNID_SENDNOTIFYMESSAGE 0x02B7
|
||||
|
@ -894,7 +894,7 @@ PPROCESSINFO GetW32ProcessInfo(VOID);
|
|||
typedef struct _WNDMSG
|
||||
{
|
||||
DWORD maxMsgs;
|
||||
DWORD abMsgs;
|
||||
PINT abMsgs;
|
||||
} WNDMSG, *PWNDMSG;
|
||||
|
||||
typedef struct _SHAREDINFO
|
||||
|
|
|
@ -2418,7 +2418,8 @@ NtUserMessageCall( HWND hWnd,
|
|||
}
|
||||
break;
|
||||
}
|
||||
case FNID_SENDMESSAGETIMEOUT:
|
||||
case FNID_SENDMESSAGEFF:
|
||||
case FNID_SENDMESSAGEWTOOPTION:
|
||||
{
|
||||
DOSENDMESSAGE dsm, *pdsm = (PDOSENDMESSAGE)ResultInfo;
|
||||
if (ResultInfo)
|
||||
|
|
Loading…
Reference in a new issue