mirror of
https://github.com/reactos/reactos.git
synced 2025-06-14 07:38:28 +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
|
else
|
||||||
{
|
{
|
||||||
POINT Pt;
|
POINT Pt;
|
||||||
DWORD Style;
|
LONG_PTR Style;
|
||||||
LONG HitCode;
|
LONG HitCode;
|
||||||
|
|
||||||
Style = GetWindowLongPtrW(hWnd, GWL_STYLE);
|
Style = GetWindowLongPtrW(hWnd, GWL_STYLE);
|
||||||
|
@ -1352,7 +1352,7 @@ User32DefWindowProc(HWND hWnd,
|
||||||
|
|
||||||
case WM_SETCURSOR:
|
case WM_SETCURSOR:
|
||||||
{
|
{
|
||||||
ULONG Style = GetWindowLongPtrW(hWnd, GWL_STYLE);
|
LONG_PTR Style = GetWindowLongPtrW(hWnd, GWL_STYLE);
|
||||||
|
|
||||||
if (Style & WS_CHILD)
|
if (Style & WS_CHILD)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue