Author: jimtabor
Date: Mon Oct 20 19:23:49 2008
New Revision: 36868
URL:
http://svn.reactos.org/svn/reactos?rev=36868&view=rev
Log:
- Finish shared info based on XP and update user connect.
Modified:
trunk/reactos/include/reactos/win32k/ntuser.h
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] Mon Oct 20 19:23:49 2008
@@ -414,17 +414,29 @@
PW32THREADINFO GetW32ThreadInfo(VOID);
PW32PROCESSINFO GetW32ProcessInfo(VOID);
+typedef struct _WNDMSG
+{
+ DWORD maxMsgs;
+ DWORD abMsgs;
+} WNDMSG, *PWNDMSG;
+
typedef struct _SHAREDINFO
{
PSERVERINFO psi; // global Server Info
PVOID aheList; // Handle Entry List
PVOID pDispInfo; // global PDISPLAYINFO pointer
ULONG_PTR ulSharedDelta; // Heap delta
+ WNDMSG awmControl[31];
+ WNDMSG DefWindowMsgs;
+ WNDMSG DefWindowSpecMsgs;
} SHAREDINFO, *PSHAREDINFO;
typedef struct _USERCONNECT
{
- SHAREDINFO ShareInfo;
+ DWORD Unknown0;
+ DWORD Unknown1;
+ DWORD Unknown2;
+ SHAREDINFO ShareInfo;
} USERCONNECT, *PUSERCONNECT;
//