2007-11-12 Mike Kestner <mkestner@novell.com>

* generator/SymbolTable.cs: remove GCallback mapping.
	* glib/GCallback.cs: kill, bad idea.

svn path=/trunk/gtk-sharp/; revision=89519
This commit is contained in:
Mike Kestner 2007-11-13 03:04:32 +00:00
parent ba4f513cfb
commit 86d29321c3
4 changed files with 5 additions and 31 deletions

View File

@ -1,3 +1,8 @@
2007-11-12 Mike Kestner <mkestner@novell.com>
* generator/SymbolTable.cs: remove GCallback mapping.
* glib/GCallback.cs: kill, bad idea.
2007-11-12 Mike Kestner <mkestner@novell.com>
* glib/IOChannel.cs: IOChannel wrapper implementation.

View File

@ -75,7 +75,6 @@ namespace GtkSharp.Generation {
AddType (new SimpleGen ("double", "double", "0.0"));
AddType (new SimpleGen ("GQuark", "int", "0"));
AddType (new SimpleGen ("GSourceFunc", "GLib.GSourceFunc", "null"));
AddType (new SimpleGen ("GCallback", "GLib.GCallback", "null"));
// platform specific integer types.
AddType (new LPGen ("ssize_t"));

View File

@ -1,29 +0,0 @@
// GLib.Callback.cs - Callback delegate
//
// Author: Mike Kestner <mkestner@novell.com>
//
// Copyright (c) 2007 Novell, Inc.
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of version 2 of the Lesser GNU General
// Public License as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this program; if not, write to the
// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
// Boston, MA 02111-1307, USA.
namespace GLib {
using System;
[CDeclCallback]
public delegate void GCallback ();
}

View File

@ -27,7 +27,6 @@ sources = \
EnumWrapper.cs \
ExceptionManager.cs \
FileUtils.cs \
GCallback.cs \
GException.cs \
GInterfaceAdapter.cs \
GInterfaceAttribute.cs \