mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-03-01 04:37:07 +00:00
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
|
@ -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>
|
2004-10-21 Mike Kestner <mkestner@ximian.com>
|
||||||
|
|
||||||
* configure.in : guard against broken installs where enable_gnome
|
* configure.in : guard against broken installs where enable_gnome
|
||||||
|
|
|
@ -50,6 +50,7 @@ namespace GtkSharp.Generation {
|
||||||
AddType (new SimpleGen ("gboolean", "bool"));
|
AddType (new SimpleGen ("gboolean", "bool"));
|
||||||
AddType (new SimpleGen ("gint", "int"));
|
AddType (new SimpleGen ("gint", "int"));
|
||||||
AddType (new SimpleGen ("guint", "uint"));
|
AddType (new SimpleGen ("guint", "uint"));
|
||||||
|
AddType (new SimpleGen ("unsigned int", "uint"));
|
||||||
AddType (new SimpleGen ("glong", "long"));
|
AddType (new SimpleGen ("glong", "long"));
|
||||||
AddType (new SimpleGen ("gshort", "short"));
|
AddType (new SimpleGen ("gshort", "short"));
|
||||||
AddType (new SimpleGen ("gushort", "ushort"));
|
AddType (new SimpleGen ("gushort", "ushort"));
|
||||||
|
|
Loading…
Reference in a new issue