Author: hbelusca
Date: Fri Jul 14 22:15:48 2017
New Revision: 75343
URL: http://svn.reactos.org/svn/reactos?rev=75343&view=rev
Log:
[INFLIB][FREELDR]: Introduce a (non-used) "CurrentInf" field in the INFCONTEXT structure, to make it compatible with the "standard" one defined in setupapi.h, so that it can be possible to either use our inflib or setupapi.dll in our code.
This will break build inside usetup, and this will be fixed in the next commit.
Modified:
trunk/reactos/boot/freeldr/freeldr/include/inffile.h
trunk/reactos/sdk/lib/inflib/infpriv.h
Modified: trunk/reactos/boot/freeldr/freeldr/include/inffile.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/inclu…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/include/inffile.h [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/include/inffile.h [iso-8859-1] Fri Jul 14 22:15:48 2017
@@ -39,7 +39,7 @@
typedef struct _INFCONTEXT
{
PVOID Inf;
-// PVOID CurrentInf;
+ PVOID CurrentInf;
PVOID Section;
PVOID Line;
} INFCONTEXT, *PINFCONTEXT;
Modified: trunk/reactos/sdk/lib/inflib/infpriv.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/sdk/lib/inflib/infpriv.h?r…
==============================================================================
--- trunk/reactos/sdk/lib/inflib/infpriv.h [iso-8859-1] (original)
+++ trunk/reactos/sdk/lib/inflib/infpriv.h [iso-8859-1] Fri Jul 14 22:15:48 2017
@@ -65,6 +65,7 @@
typedef struct _INFCONTEXT
{
PINFCACHE Inf;
+ PINFCACHE CurrentInf;
PINFCACHESECTION Section;
PINFCACHELINE Line;
} INFCONTEXT;