reactos/reactos/lib/inflib
Thomas Faber cc5e6fe6a6 [INFLIB]
- Avoid use of swprintf, which is blatantly incompatible with -fshort-wchar
CORE-6918 #resolve

svn path=/trunk/; revision=59504
2013-07-18 20:29:18 +00:00
..
builddep.h * Slap *some* sense into our header inclusions. 2013-01-24 23:00:42 +00:00
CMakeLists.txt [INFLIB] 2013-07-18 20:29:18 +00:00
infcommon.h
infcore.c
infget.c [INFLIB] 2013-07-18 20:29:18 +00:00
infhost.h
infhostgen.c
infhostget.c
infhostput.c
infhostrtl.c
inflib.h
infpriv.h
infput.c
infros.h
infrosgen.c
infrosget.c
infrosput.c
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.