mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-08 22:15:41 +00:00
2002-06-21 Mike Kestner <mkestner@speakeasy.net>
* 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
This commit is contained in:
parent
dbfe6207a7
commit
cf74f063c8
|
@ -1,3 +1,9 @@
|
|||
2002-06-21 Mike Kestner <mkestner@speakeasy.net>
|
||||
|
||||
* 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 <mkestner@speakeasy.net>
|
||||
|
||||
* generator/Parameters.cs : GError handling overhaul
|
||||
|
|
|
@ -130,6 +130,9 @@ namespace GtkSharp.Generation {
|
|||
else
|
||||
safety = "";
|
||||
|
||||
sw.WriteLine("\t\t/// <summary> " + Name + " Method </summary>");
|
||||
sw.WriteLine("\t\t/// <remarks> To be completed </remarks>");
|
||||
sw.WriteLine();
|
||||
sw.WriteLine("\t\t[DllImport(\"" + SymbolTable.GetDllName(ns) +
|
||||
"\", CallingConvention=CallingConvention.Cdecl)]");
|
||||
sw.Write("\t\tstatic extern " + safety + m_ret + " " + cname + isig);
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue