Author: gedmurphy
Date: Fri Jan 11 20:27:36 2008
New Revision: 31728
URL:
http://svn.reactos.org/svn/reactos?rev=31728&view=rev
Log:
- add the new win32k CURICON_OBJECT struct (unused) which is compatible with Win2K3
Modified:
branches/curicon_rewrite/subsystems/win32/win32k/include/cursoricon.h
Modified: branches/curicon_rewrite/subsystems/win32/win32k/include/cursoricon.h
URL:
http://svn.reactos.org/svn/reactos/branches/curicon_rewrite/subsystems/win3…
==============================================================================
--- branches/curicon_rewrite/subsystems/win32/win32k/include/cursoricon.h (original)
+++ branches/curicon_rewrite/subsystems/win32/win32k/include/cursoricon.h Fri Jan 11
20:27:36 2008
@@ -8,6 +8,21 @@
LIST_ENTRY ListEntry;
PW32PROCESS Process;
} CURICON_PROCESS, *PCURICON_PROCESS;
+
+typedef struct _CURSOR
+{
+ LIST_ENTRY pcurNext;
+ UINT CURSORF_flags; // CURSORF_+ LINKED, SECRET, ACONFRAME, WOWCLEANUP, ACON,
LRSHARED, GLOBAL, FROMRESOURCE
+ UNICODE_STRING strName; // resource string name
+ ATOM atomModName; // atom for the module name
+ UINT rt; // resource type, RT_ICON or RT_CURSOR ??
+ INT cx;
+ INT cy;
+ UINT xhotspot;
+ UINT yhotspot;
+ HBITMAP hbmMask;
+ HBITMAP hbmColor;
+} CURSOR, *PCURSOR;
typedef struct _CURICON_OBJECT
{