Author: jimtabor
Date: Sat Jul 25 03:42:04 2009
New Revision: 42186
URL:
http://svn.reactos.org/svn/reactos?rev=42186&view=rev
Log:
- Removed unused ppi pointer.
Modified:
trunk/reactos/include/reactos/win32k/ntuser.h
trunk/reactos/subsystems/win32/win32k/ntuser/window.c
Modified: trunk/reactos/include/reactos/win32k/ntuser.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/win32k/ntu…
==============================================================================
--- trunk/reactos/include/reactos/win32k/ntuser.h [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/win32k/ntuser.h [iso-8859-1] Sat Jul 25 03:42:04 2009
@@ -263,7 +263,6 @@
eventually replace WINDOW_OBJECT. Right now WINDOW_OBJECT
keeps a reference to this structure until all the information
is moved to this structure */
- struct _PROCESSINFO *pi; // head.pti->ppi
struct _W32THREADINFO *pti; // head.pti
struct _DESKTOP *rpdesk; // head.rpdesk
@@ -380,8 +379,7 @@
WNDPROC_EX pfnCtfHookProc;
} PFNCLIENTWORKER, *PPFNCLIENTWORKER;
-struct _WND;
-typedef LONG_PTR (NTAPI *PFN_FNID)(struct _WND*, UINT, WPARAM, LPARAM, ULONG_PTR);
+typedef LONG_PTR (NTAPI *PFN_FNID)(PWND, UINT, WPARAM, LPARAM, ULONG_PTR);
// FNID's for NtUserSetWindowFNID, NtUserMessageCall
#define FNID_FIRST 0x029A
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/window.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/nt…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/window.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/window.c [iso-8859-1] Sat Jul 25 03:42:04
2009
@@ -1673,7 +1673,6 @@
Wnd = Window->Wnd;
Wnd->pti = ti;
- Wnd->pi = ti->ppi;
Wnd->rpdesk = pti->Desktop;
Wnd->hWndLastActive = hWnd;
}