reactos/reactos/lib/inflib
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 Update crt headers and mingw lib from mingw64. Update crt a bit. 4 msvcrt time tests fixed. 2008-12-13 21:28:05 +00:00
CMakeLists.txt [CMAKE] 2011-05-16 13:12:07 +00:00
infcommon.h - Move from using include guards to pragma once. 2010-02-26 11:43:19 +00:00
infcore.c - Fix various warnings in inflib (thanks to Ged for help with what appears to be a gcc bug in push_token) 2009-09-10 17:41:44 +00:00
infget.c [USETUP] / [INFLIB] 2010-07-25 13:46:54 +00:00
infhost.h - Move from using include guards to pragma once. 2010-02-26 11:43:19 +00:00
infhostgen.c - Fix some inflib warnings 2009-08-30 18:11:09 +00:00
infhostget.c Fix the mkhive bug on 64-bit systems, this time correct. 2007-08-18 10:27:23 +00:00
infhostput.c Get inflib_host to build warning-free 2008-02-03 13:36:10 +00:00
inflib.h Include stddef.h for ptrdiff_t 2007-08-02 04:19:52 +00:00
inflib.mak fix accidentally set property svn:executable 2011-04-17 09:50:07 +00:00
inflib.rbuild - ...and this one. 2009-09-30 13:43:55 +00:00
infpriv.h [USETUP] / [INFLIB] 2010-07-25 13:46:54 +00:00
infput.c - Fix various warnings in inflib (thanks to Ged for help with what appears to be a gcc bug in push_token) 2009-09-10 17:41:44 +00:00
infros.h [USETUP] 2011-02-20 16:50:38 +00:00
infrosgen.c Implement adding new sections/lines/fields and writing the resulting file 2005-11-25 21:37:23 +00:00
infrosget.c [USETUP] / [INFLIB] 2010-07-25 13:46:54 +00:00
infrosput.c Implement adding new sections/lines/fields and writing the resulting file 2005-11-25 21:37:23 +00:00
README.txt - Factor out .inf handling code from usetup 2005-11-24 08:07:12 +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.