[INFLIB][FREELDR]: Introduce a (non-used) "CurrentInf" field in the INFCONTEXT struct...
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Fri, 14 Jul 2017 22:15:48 +0000 (22:15 +0000)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Fri, 14 Jul 2017 22:15:48 +0000 (22:15 +0000)
This will break build inside usetup, and this will be fixed in the next commit.

svn path=/trunk/; revision=75343

reactos/boot/freeldr/freeldr/include/inffile.h
reactos/sdk/lib/inflib/infpriv.h

index 5d8ad81..766f012 100644 (file)
@@ -39,7 +39,7 @@ typedef PULONG HINF, *PHINF;
 typedef struct _INFCONTEXT
 {
   PVOID Inf;
-//  PVOID CurrentInf;
+  PVOID CurrentInf;
   PVOID Section;
   PVOID Line;
 } INFCONTEXT, *PINFCONTEXT;
index f1b3341..1df8bb4 100644 (file)
@@ -65,6 +65,7 @@ typedef struct _INFCACHE
 typedef struct _INFCONTEXT
 {
   PINFCACHE Inf;
+  PINFCACHE CurrentInf;
   PINFCACHESECTION Section;
   PINFCACHELINE Line;
 } INFCONTEXT;