2003-08-26 John Luke <jluke@cfl.rr.com>

* gtk/ThreadNotify.cs: mark dllimported methods private

svn path=/trunk/gtk-sharp/; revision=17651
This commit is contained in:
John Luke 2003-08-27 02:26:05 +00:00
parent a591aef382
commit 310ff89edd
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2003-08-26 John Luke <jluke@cfl.rr.com>
* gtk/ThreadNotify.cs: mark dllimported methods private
2003-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* gconf/GConf/Value.cs: implemented support for lists.

View File

@ -29,20 +29,20 @@ namespace Gtk {
// DllImport functions from Gtk
//
[DllImport ("libgtk-win32-2.0-0.dll")]
public static extern int gdk_input_add (int s, int cond, GdkInputFunction f, IntPtr data);
private static extern int gdk_input_add (int s, int cond, GdkInputFunction f, IntPtr data);
public delegate void GdkInputFunction (IntPtr data, int source, int cond);
//
// Libc stuff
//
[DllImport ("libc.so.6")]
public static extern int pipe (int [] fd);
private static extern int pipe (int [] fd);
[DllImport ("libc.so.6")]
public static extern unsafe int read (int fd, byte *b, int count);
private static extern unsafe int read (int fd, byte *b, int count);
[DllImport ("libc.so.6")]
public static extern unsafe int write (int fd, byte *b, int count);
private static extern unsafe int write (int fd, byte *b, int count);
GdkInputFunction notify_pipe;