reactos/lib/inflib
Jérôme Gardou c16ad873a6 sync with trunk (r46275)
svn path=/branches/reactos-yarotows/; revision=46279
2010-03-19 21:09:21 +00:00
..
builddep.h Hopefully create a branch and not destroy the svn repository. 2010-01-23 23:25:04 +00:00
infcommon.h sync with trunk (r46275) 2010-03-19 21:09:21 +00:00
infcore.c Hopefully create a branch and not destroy the svn repository. 2010-01-23 23:25:04 +00:00
infget.c Hopefully create a branch and not destroy the svn repository. 2010-01-23 23:25:04 +00:00
infhost.h sync with trunk (r46275) 2010-03-19 21:09:21 +00:00
infhostgen.c Hopefully create a branch and not destroy the svn repository. 2010-01-23 23:25:04 +00:00
infhostget.c Hopefully create a branch and not destroy the svn repository. 2010-01-23 23:25:04 +00:00
infhostput.c Hopefully create a branch and not destroy the svn repository. 2010-01-23 23:25:04 +00:00
inflib.h Hopefully create a branch and not destroy the svn repository. 2010-01-23 23:25:04 +00:00
inflib.mak Hopefully create a branch and not destroy the svn repository. 2010-01-23 23:25:04 +00:00
inflib.rbuild Hopefully create a branch and not destroy the svn repository. 2010-01-23 23:25:04 +00:00
infpriv.h sync with trunk (r46275) 2010-03-19 21:09:21 +00:00
infput.c Hopefully create a branch and not destroy the svn repository. 2010-01-23 23:25:04 +00:00
infros.h sync with trunk (r46275) 2010-03-19 21:09:21 +00:00
infrosgen.c Hopefully create a branch and not destroy the svn repository. 2010-01-23 23:25:04 +00:00
infrosget.c Hopefully create a branch and not destroy the svn repository. 2010-01-23 23:25:04 +00:00
infrosput.c Hopefully create a branch and not destroy the svn repository. 2010-01-23 23:25:04 +00:00
README.txt Hopefully create a branch and not destroy the svn repository. 2010-01-23 23:25:04 +00:00

Routines to handle .inf files.

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.