mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
fixed difference in signedness warnings
svn path=/trunk/; revision=19818
This commit is contained in:
parent
ac156d2b5a
commit
17b432abb7
1 changed files with 2 additions and 2 deletions
|
@ -278,7 +278,7 @@ static DWORD WINAPI
|
|||
SendQueryEndSession(LPVOID Parameter)
|
||||
{
|
||||
PMESSAGE_CONTEXT Context = (PMESSAGE_CONTEXT) Parameter;
|
||||
LRESULT Result;
|
||||
DWORD_PTR Result;
|
||||
|
||||
if (SendMessageTimeoutW(Context->Wnd, WM_QUERYENDSESSION, Context->wParam,
|
||||
Context->lParam, SMTO_NORMAL, Context->Timeout,
|
||||
|
@ -294,7 +294,7 @@ static DWORD WINAPI
|
|||
SendEndSession(LPVOID Parameter)
|
||||
{
|
||||
PMESSAGE_CONTEXT Context = (PMESSAGE_CONTEXT) Parameter;
|
||||
LRESULT Result;
|
||||
DWORD_PTR Result;
|
||||
|
||||
if (Context->wParam)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue