Opentk/Source/Converter/CHeaderToXML
the_fiddler 3edf2cebda ESCLParser can now parse negative enum constants.
ESCLParser can now parse bitfield constants in the form (1 << n).
Added a workaround for enums named as "FooFlags - bitfield" which where converted to "FooFlagsFlags". They are now converted to "FooFlags".
Added flow attribute to function parameters. Parameter names ending with "ret" (e.g. errcode_ret) have a flow of "out". Everything else currently has a flow of "in".
Fixed conversion of "unsigned [byte|short|int|long]" parameters (they are now converted to [byte|ushort|uint|ulong] respectively).
2009-08-11 13:53:01 +00:00
..
Headers Initial commit. 2009-07-31 15:24:08 +00:00
Properties Initial commit. 2009-07-31 15:24:08 +00:00
CHeaderToXML.csproj Added readme file. 2009-07-31 15:37:27 +00:00
ESCLParser.cs ESCLParser can now parse negative enum constants. 2009-08-11 13:53:01 +00:00
Main.cs * Main.cs: Sort functions by extension first, then by name. 2009-08-03 21:41:35 +00:00
Options.cs Initial commit. 2009-07-31 15:24:08 +00:00
Parser.cs Initial commit. 2009-07-31 15:24:08 +00:00
Readme.txt Added readme file. 2009-07-31 15:37:27 +00:00
XML schema notes.txt Initial commit. 2009-07-31 15:24:08 +00:00

[Introduction]

This is a simple tool to convert C headers to XML files. It works using simple pattern matching - it does not actually parse the header files. For this reason, it will work with only a few, specific header files: ES and CL at this point.


[Usage]

CHeaderToXML.exe -p:{PREFIX} -v:{VERSION} {INPUT}
    {PREFIX} is a simple string that defines the a common prefix for functions and constants in this header. This prefix will be removed from the generated XML file.
    {VERSION} is a string that defines that version that will be used for functions in the generated XML file. Specific input files may override this setting.
    {INPUT} is a space-separated list of input files (headers).
    
Despite what the help says, all three parameters are necessary at the moment.


[Known issues]

None at the moment.


[Support]

If you encounter a bug, please file an issue report at http://www.opentk.com/issues

We will only accept bug reports for supported header files. This is not a generic tool and will fail to parse unsupported files.