reactos/lib/inflib
Hermès Bélusca-Maïto bb519801e2 - Sync with trunk r58248 to bring the latest changes from Amine (headers) and others (hebrew translation, etc...)
- Include only the necessary headers in csrss/csrsrv/basesrv/consrv/winsrv.

svn path=/branches/ros-csrss/; revision=58249
2013-01-28 22:45:53 +00:00
..
builddep.h - Sync with trunk r58248 to bring the latest changes from Amine (headers) and others (hebrew translation, etc...) 2013-01-28 22:45:53 +00:00
CMakeLists.txt Sync with trunk r58033. 2012-12-28 23:37:33 +00:00
infcommon.h Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
infcore.c Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
infget.c Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
infhost.h Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
infhostgen.c Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
infhostget.c Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
infhostput.c Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
infhostrtl.c Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
inflib.h Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
infpriv.h Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
infput.c Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
infros.h Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
infrosgen.c Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
infrosget.c Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
infrosput.c Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00
README.txt Create a branch for working on csrss and co. 2012-10-14 13:04:31 +00:00

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.