From cf74f063c890a1a8bcee9756c1160cc975fcf38d Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Fri, 21 Jun 2002 00:50:45 +0000 Subject: [PATCH] 2002-06-21 Mike Kestner * gdk.imaging/Makefile.in : add a missing -L * gtk/Makefile.in : add a missing -L * generator/Method.cs : Add some docs stubbage svn path=/trunk/gtk-sharp/; revision=5385 --- ChangeLog | 6 ++++++ generator/Method.cs | 3 +++ gtk/Makefile.in | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3d594c268..ce7aefcf6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-06-21 Mike Kestner + + * gdk.imaging/Makefile.in : add a missing -L + * gtk/Makefile.in : add a missing -L + * generator/Method.cs : Add some docs stubbage + 2002-06-20 Mike Kestner * generator/Parameters.cs : GError handling overhaul diff --git a/generator/Method.cs b/generator/Method.cs index 304b86fd4..eafa89048 100644 --- a/generator/Method.cs +++ b/generator/Method.cs @@ -130,6 +130,9 @@ namespace GtkSharp.Generation { else safety = ""; + sw.WriteLine("\t\t/// " + Name + " Method "); + sw.WriteLine("\t\t/// To be completed "); + sw.WriteLine(); sw.WriteLine("\t\t[DllImport(\"" + SymbolTable.GetDllName(ns) + "\", CallingConvention=CallingConvention.Cdecl)]"); sw.Write("\t\tstatic extern " + safety + m_ret + " " + cname + isig); diff --git a/gtk/Makefile.in b/gtk/Makefile.in index ccecdd545..fd49badb9 100755 --- a/gtk/Makefile.in +++ b/gtk/Makefile.in @@ -8,7 +8,7 @@ windows: linux: gtk-sharp.dll gtk-sharp.dll: *.cs generated/*.cs - $(MCS) --unsafe --target library -r System.Drawing -L ../glib -L ../pango -L ../atk -L ../gdk -r glib-sharp -r pango-sharp -r atk-sharp -r gdk-sharp -r gdk-imaging-sharp -o gtk-sharp.dll --recurse '*.cs' + $(MCS) --unsafe --target library -r System.Drawing -L ../glib -L ../pango -L ../atk -L ../gdk -L ../gdk.imaging -r glib-sharp -r pango-sharp -r atk-sharp -r gdk-sharp -r gdk-imaging-sharp -o gtk-sharp.dll --recurse '*.cs' clean: rm -f *.dll