Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

33 lines
507 B
C#

using System;
class X {
IntPtr Raw;
void g_object_get (IntPtr obj, string name, out string val, IntPtr term)
{
val = null;
}
public void GetProperty (String name, out String val)
{
g_object_get (Raw, name, out val, new IntPtr (0));
}
void g_object_get (IntPtr obj, string name, out bool val, IntPtr term)
{
val = true;
}
public void GetProperty (String name, out bool val)
{
g_object_get (Raw, name, out val, new IntPtr (0));
}
public static int Main ()
{
return 0;
}
}