* generator/SymbolTable.cs: Added ulong

svn path=/trunk/gtk-sharp/; revision=15178
This commit is contained in:
Martin Willemoes Hansen 2003-06-07 17:22:12 +00:00
parent 3f7bd40ef7
commit 948a75e5e4
2 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,6 @@
2003-06-07 Martin Willemoes Hansen <mwh@sysrq.dk>
* generator/SymbolTable.cs: Added ulong
2003-05-27 Rachel Hestilow <rachel@nullenvoid.com>
* sample/ManagedTreeViewDemo.cs: Remove debugging cruft.

View File

@ -54,6 +54,7 @@ namespace GtkSharp.Generation {
AddType (new SimpleGen ("gpointer", "IntPtr"));
AddType (new SimpleGen ("guchar", "byte"));
AddType (new SimpleGen ("long", "long"));
AddType (new SimpleGen ("ulong", "ulong"));
AddType (new SimpleGen ("gulong", "ulong"));
AddType (new SimpleGen ("GQuark", "int"));
AddType (new SimpleGen ("int", "int"));