2005-08-23 Joe Shaw <joeshaw@novell.com>

* generator/SymbolTable.cs: Add "unsigned" as a type
	which maps to "uint".

svn path=/trunk/gtk-sharp/; revision=48754
This commit is contained in:
Joe Shaw 2005-08-23 18:36:43 +00:00
parent 4ecc1e8f03
commit 5f89b3da2f
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2005-08-23 Joe Shaw <joeshaw@novell.com>
* generator/SymbolTable.cs: Add "unsigned" as a type
which maps to "uint".
* parser/gapi2xml.pl: Handle "type const *" return types
as well. I think this is all of them!

View File

@ -49,6 +49,7 @@ namespace GtkSharp.Generation {
AddType (new SimpleGen ("gint", "int"));
AddType (new SimpleGen ("guint", "uint"));
AddType (new SimpleGen ("int", "int"));
AddType (new SimpleGen ("unsigned", "uint"));
AddType (new SimpleGen ("unsigned int", "uint"));
AddType (new SimpleGen ("unsigned-int", "uint"));
AddType (new SimpleGen ("gshort", "short"));