mirror of
https://github.com/reactos/reactos.git
synced 2025-05-31 06:58:10 +00:00
GetWindowLongPtr returns a LONG_PTR, so be it
svn path=/trunk/; revision=42322
This commit is contained in:
parent
7163d097d0
commit
f8ffccf7de
1 changed files with 2 additions and 2 deletions
|
@ -1148,7 +1148,7 @@ User32DefWindowProc(HWND hWnd,
|
|||
else
|
||||
{
|
||||
POINT Pt;
|
||||
DWORD Style;
|
||||
LONG_PTR Style;
|
||||
LONG HitCode;
|
||||
|
||||
Style = GetWindowLongPtrW(hWnd, GWL_STYLE);
|
||||
|
@ -1352,7 +1352,7 @@ User32DefWindowProc(HWND hWnd,
|
|||
|
||||
case WM_SETCURSOR:
|
||||
{
|
||||
ULONG Style = GetWindowLongPtrW(hWnd, GWL_STYLE);
|
||||
LONG_PTR Style = GetWindowLongPtrW(hWnd, GWL_STYLE);
|
||||
|
||||
if (Style & WS_CHILD)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue