2004-10-21 Mike Kestner <mkestner@ximian.com>
* generator/SymbolTable.cs : map unsigned int to uint. [Fixes #67732] svn path=/trunk/gtk-sharp/; revision=35214
This commit is contained in:
parent
6d03cee2fb
commit
ed44e2d365
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2004-10-21 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* generator/SymbolTable.cs : map unsigned int to uint. [Fixes #67732]
|
||||
|
||||
2004-10-21 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* configure.in : guard against broken installs where enable_gnome
|
||||
|
|
|
@ -50,6 +50,7 @@ namespace GtkSharp.Generation {
|
|||
AddType (new SimpleGen ("gboolean", "bool"));
|
||||
AddType (new SimpleGen ("gint", "int"));
|
||||
AddType (new SimpleGen ("guint", "uint"));
|
||||
AddType (new SimpleGen ("unsigned int", "uint"));
|
||||
AddType (new SimpleGen ("glong", "long"));
|
||||
AddType (new SimpleGen ("gshort", "short"));
|
||||
AddType (new SimpleGen ("gushort", "ushort"));
|
||||
|
|
Loading…
Reference in a new issue