2003-05-22 Rachel Hestilow <rachel@nullenvoid.com>
* glib/ManagedValue.cs, glib/Value.cs: A few old-style DllImports snuck in during my last commit; update them to use Win32 dll names. svn path=/trunk/gtk-sharp/; revision=14819
This commit is contained in:
parent
9d286a36ed
commit
4faf8b6b74
3 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2003-05-22 Rachel Hestilow <rachel@nullenvoid.com>
|
||||
|
||||
* glib/ManagedValue.cs, glib/Value.cs: A few old-style
|
||||
DllImports snuck in during my last commit; update them
|
||||
to use Win32 dll names.
|
||||
|
||||
2003-04-28 Lee Mallabone <gnome@fonicmonkey.net>
|
||||
|
||||
* sources/Gtk.metadata, api/gtk-api.xml: Unhide GtkSizeGroup
|
||||
|
|
|
@ -39,7 +39,7 @@ namespace GLibSharp {
|
|||
private static FreeFunc free;
|
||||
private static uint boxed_type = 0;
|
||||
|
||||
[DllImport("gobject-2.0")]
|
||||
[DllImport("libgobject-2.0-0.dll")]
|
||||
private static extern uint g_boxed_type_register_static (string typename, CopyFunc copy_func, FreeFunc free_func);
|
||||
|
||||
public static uint GType {
|
||||
|
|
|
@ -275,7 +275,7 @@ namespace GLib {
|
|||
static extern void g_value_set_enum (IntPtr val, int data);
|
||||
[DllImport("libgobject-2.0-0.dll")]
|
||||
static extern void g_value_set_flags (IntPtr val, uint data);
|
||||
[DllImport("gobject-2.0")]
|
||||
[DllImport("libgobject-2.0-0.dll")]
|
||||
static extern void g_value_set_char (IntPtr val, char data);
|
||||
|
||||
/// <summary>
|
||||
|
@ -304,7 +304,7 @@ namespace GLib {
|
|||
/// type.
|
||||
/// </remarks>
|
||||
|
||||
[DllImport("gobject-2.0")]
|
||||
[DllImport("libgobject-2.0-0.dll")]
|
||||
static extern void g_value_set_boxed_take_ownership (IntPtr val, IntPtr data);
|
||||
|
||||
public Value (object obj)
|
||||
|
|
Loading…
Reference in a new issue