reactos/reactos/lib/newinflib
Timo Kreuzer fae2044a23 [CMAKE]
Integrate cmake stuff into trunk
Only files added.

svn path=/trunk/; revision=51783
2011-05-16 13:12:07 +00:00
..
builddep.h [CMLIB/NEWINFLIB/MKHIVE] 2010-05-01 20:17:11 +00:00
CMakeLists.txt [CMAKE] 2011-05-16 13:12:07 +00:00
infcommon.h
infcore.c [NEWINFLIB] 2010-05-01 10:43:39 +00:00
infget.c [NEWINFLIB] 2010-07-25 14:09:08 +00:00
infhost.h Fix build. 2010-07-25 14:20:03 +00:00
infhostgen.c [INFLIBNEW] Free allocated memory on error 2010-05-14 20:56:43 +00:00
infhostget.c [NEWINFLIB] 2010-07-25 14:09:08 +00:00
infhostput.c
infhostrtl.c [NEWINFLIB] Fix an off-by-one bug, which lead to the crash of mkhive after parsing ~3 files on Windows or ~5 files on Linux 2010-05-14 21:20:40 +00:00
inflib.h
inflib.mak
inflib.rbuild [CMLIB/NEWINFLIB/MKHIVE] 2010-05-01 20:17:11 +00:00
infpriv.h [NEWINFLIB] 2010-07-25 14:09:08 +00:00
infput.c [NEWINFLIB] 2010-05-01 10:43:39 +00:00
infros.h [NEWINFLIB] 2010-07-25 14:09:08 +00:00
infrosgen.c [MKHIVE/USETUP] 2010-04-28 11:35:34 +00:00
infrosget.c [NEWINFLIB] 2010-07-25 14:09:08 +00:00
infrosput.c [NEWINFLIB] 2010-05-01 10:43:39 +00:00
README.txt

Routines to handle .inf files.

This is the UNICODE-enabled version of inflib. It will be used by usetup and mkhive.

This library is used to share .inf handling code between build tools and
ReactOS code. Two versions are built, "inflib_host" (for use by build tools)
and "inflib" (for use by ReactOS code). Both depend on the same core source,
with a wrapper for the appropriate interface.
Most of the differences between the host and the ReactOS environment are
abstracted away in builddep.h. Of particular note is that the host version
uses Ansi characters while the ReactOS version uses Unicode. So, the core
source uses TCHARs. builddep.h depends on a preprocessor variable INFLIB_HOST
which is defined when building the host version (inflib.mak) but not defined
when building the ReactOS version (inflib.xml).
The wrappers have "host" or "ros" in their filename. The library interface is
"infhost.h" for the host version, "infros.h" for the ReactOS version.