Author: greatlrd
Date: Fri Jun 8 01:33:17 2007
New Revision: 27064
URL: http://svn.reactos.org/svn/reactos?rev=27064&view=rev
Log:
patch from Pierre Schweitzer <heis_spiter at hotmail dot com>
comment from Pierre Schweitzer
In rev 27054, ekohl reduced access right when creating partition list (when
opening "disk"). To work, usetup needs more rights (like reading contents). So
this patch adds the missing right
See issue #2293 for more details.
Modified:
trunk/reactos/base/setup/usetup/partlist.c
Modified: trunk/reactos/base/setup/usetup/partlist.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/setup/usetup/partlist…
==============================================================================
--- trunk/reactos/base/setup/usetup/partlist.c (original)
+++ trunk/reactos/base/setup/usetup/partlist.c Fri Jun 8 01:33:17 2007
@@ -949,7 +949,7 @@
NULL);
Status = NtOpenFile (&FileHandle,
- FILE_READ_ATTRIBUTES | SYNCHRONIZE,
+ FILE_READ_DATA | FILE_READ_ATTRIBUTES | SYNCHRONIZE,
&ObjectAttributes,
&Iosb,
FILE_SHARE_READ,
Author: greatlrd
Date: Fri Jun 8 02:09:47 2007
New Revision: 27065
URL: http://svn.reactos.org/svn/reactos?rev=27065&view=rev
Log:
revert my commit to this filem sorry breaking the build it is fix 1 / 2 next commit fixing the build again
Modified:
trunk/reactos/hal/hal/hal.def
Modified: trunk/reactos/hal/hal/hal.def
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/hal/hal/hal.def?rev=27065&…
==============================================================================
--- trunk/reactos/hal/hal/hal.def (original)
+++ trunk/reactos/hal/hal/hal.def Fri Jun 8 02:09:47 2007
@@ -47,7 +47,6 @@
HalInitSystem@8
HalInitializeProcessor@8
HalMakeBeep@4
-HalPutDmaAdapter@4
HalProcessorIdle@0
HalQueryDisplayParameters@16
HalQueryRealTimeClock@4
Author: greatlrd
Date: Fri Jun 8 15:36:38 2007
New Revision: 27067
URL: http://svn.reactos.org/svn/reactos?rev=27067&view=rev
Log:
update with some new info
Modified:
trunk/reactos/dll/directx/ddraw/ddraw_structures.txt
Modified: trunk/reactos/dll/directx/ddraw/ddraw_structures.txt
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/directx/ddraw/ddraw_st…
==============================================================================
--- trunk/reactos/dll/directx/ddraw/ddraw_structures.txt (original)
+++ trunk/reactos/dll/directx/ddraw/ddraw_structures.txt Fri Jun 8 15:36:38 2007
@@ -325,3 +325,32 @@
LPVOID lpLink;
DWORD dwIntRefCnt;
} DDRAWI_DDCOLORCONTROL_INT, *LPDDRAWI_DDCOLORCONTROL_INT
+
+
+
+Undocument behvoirs
+
+typedef struct _DDHAL_GETAVAILDRIVERMEMORYDATA
+{
+ LPDDRAWI_DIRECTDRAW_GBL lpDD;
+ DDSCAPS DDSCaps;
+ DWORD dwTotal;
+ DWORD dwFree;
+ HRESULT ddRVal;
+ LPDDHAL_GETAVAILDRIVERMEMORY GetAvailDriverMemory;
+ DDSCAPSEX ddsCapsEx;
+
+} DDHAL_GETAVAILDRIVERMEMORYDATA;
+
+
+DDHAL_GETAVAILDRIVERMEMORYDATA->GetAvailDriverMemory
+ in msdn say this is private use for ddraw, I found out
+ this will set current COM object pointer memory address
+ and send it down (the Ddraw->iface pointer being set)
+
+ but the fun thing this member do not need be set
+ ReactOS ddraw will not copy this behoir.
+
+
+
+