Author: tkreuzer
Date: Mon Nov 29 14:43:30 2010
New Revision: 49860
URL: http://svn.reactos.org/svn/reactos?rev=49860&view=rev
Log:
[DXSDK]
Don't use stdole32.tlb.
Seems that this is the problem that made midl fail. Maybe not. Yesterday it was all about VARIANT, which has no effect today. Let's see what tomorrow will bring :-?
Modified:
branches/cmake-bringup/include/dxsdk/bdatif.idl
Modified: branches/cmake-bringup/include/dxsdk/bdatif.idl
URL: http://svn.reactos.org/svn/reactos/branches/cmake-bringup/include/dxsdk/bda…
==============================================================================
--- branches/cmake-bringup/include/dxsdk/bdatif.idl [iso-8859-1] (original)
+++ branches/cmake-bringup/include/dxsdk/bdatif.idl [iso-8859-1] Mon Nov 29 14:43:30 2010
@@ -254,7 +254,9 @@
]
library PSISLOADLib
{
+#ifndef __midl
importlib("stdole32.tlb");
+#endif
importlib("stdole2.tlb");
[
Author: pschweitzer
Date: Sun Nov 28 22:33:19 2010
New Revision: 49858
URL: http://svn.reactos.org/svn/reactos?rev=49858&view=rev
Log:
[NTOSKRNL/NEWCC]
Init Dummy var even if just used for debug to suppress warning
Modified:
trunk/reactos/ntoskrnl/po/power.c
Modified: trunk/reactos/ntoskrnl/po/power.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/po/power.c?rev=49…
==============================================================================
--- trunk/reactos/ntoskrnl/po/power.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/po/power.c [iso-8859-1] Sun Nov 28 22:33:19 2010
@@ -750,6 +750,8 @@
#ifndef NEWCC
/* Flush dirty cache pages */
CcRosFlushDirtyPages(-1, &Dummy);
+#else
+ Dummy = 0;
#endif
/* Flush all volumes and the registry */