2005-01-21 Mike Kestner <mkestner@novell.com>

* generator/SymbolTable.cs : alias off_t to ssize_t as it is
	signed according to harold.  [Fixes #77016]

svn path=/trunk/gtk-sharp/; revision=55887
This commit is contained in:
Mike Kestner 2006-01-21 17:31:03 +00:00
parent 5bac7a6c8d
commit 8be43289ae
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-01-21 Mike Kestner <mkestner@novell.com>
* generator/SymbolTable.cs : alias off_t to ssize_t as it is
signed according to harold. [Fixes #77016]
2005-01-21 Mike Kestner <mkestner@novell.com>
* gtk/RadioToolButton.custom : manually implement the GLib.List group

View File

@ -85,7 +85,7 @@ namespace GtkSharp.Generation {
AddType (new LPUGen ("ulong"));
AddType (new LPUGen ("gulong"));
AddType (new LPUGen ("gsize"));
AddType (new AliasGen ("off_t", "size_t"));
AddType (new AliasGen ("off_t", "ssize_t"));
// string types
AddType (new ConstStringGen ("const-gchar"));