no more submodule
This commit is contained in:
@@ -0,0 +1,94 @@
|
||||
// This file was generated by the Gtk# code generator.
|
||||
// Any changes made will be lost if regenerated.
|
||||
|
||||
namespace GLibSharp {
|
||||
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
#region Autogenerated code
|
||||
internal delegate bool PollableSourceFuncNative(IntPtr pollable_stream, IntPtr user_data);
|
||||
|
||||
internal class PollableSourceFuncInvoker {
|
||||
|
||||
PollableSourceFuncNative native_cb;
|
||||
IntPtr __data;
|
||||
GLib.DestroyNotify __notify;
|
||||
|
||||
~PollableSourceFuncInvoker ()
|
||||
{
|
||||
if (__notify == null)
|
||||
return;
|
||||
__notify (__data);
|
||||
}
|
||||
|
||||
internal PollableSourceFuncInvoker (PollableSourceFuncNative native_cb) : this (native_cb, IntPtr.Zero, null) {}
|
||||
|
||||
internal PollableSourceFuncInvoker (PollableSourceFuncNative native_cb, IntPtr data) : this (native_cb, data, null) {}
|
||||
|
||||
internal PollableSourceFuncInvoker (PollableSourceFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
|
||||
{
|
||||
this.native_cb = native_cb;
|
||||
__data = data;
|
||||
__notify = notify;
|
||||
}
|
||||
|
||||
internal GLib.PollableSourceFunc Handler {
|
||||
get {
|
||||
return new GLib.PollableSourceFunc(InvokeNative);
|
||||
}
|
||||
}
|
||||
|
||||
bool InvokeNative (GLib.Object pollable_stream)
|
||||
{
|
||||
bool __result = native_cb (pollable_stream == null ? IntPtr.Zero : pollable_stream.Handle, __data);
|
||||
return __result;
|
||||
}
|
||||
}
|
||||
|
||||
internal class PollableSourceFuncWrapper {
|
||||
|
||||
public bool NativeCallback (IntPtr pollable_stream, IntPtr user_data)
|
||||
{
|
||||
try {
|
||||
bool __ret = managed (GLib.Object.GetObject (pollable_stream));
|
||||
if (release_on_call)
|
||||
gch.Free ();
|
||||
return __ret;
|
||||
} catch (Exception e) {
|
||||
GLib.ExceptionManager.RaiseUnhandledException (e, false);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
bool release_on_call = false;
|
||||
GCHandle gch;
|
||||
|
||||
public void PersistUntilCalled ()
|
||||
{
|
||||
release_on_call = true;
|
||||
gch = GCHandle.Alloc (this);
|
||||
}
|
||||
|
||||
internal PollableSourceFuncNative NativeDelegate;
|
||||
GLib.PollableSourceFunc managed;
|
||||
|
||||
public PollableSourceFuncWrapper (GLib.PollableSourceFunc managed)
|
||||
{
|
||||
this.managed = managed;
|
||||
if (managed != null)
|
||||
NativeDelegate = new PollableSourceFuncNative (NativeCallback);
|
||||
}
|
||||
|
||||
public static GLib.PollableSourceFunc GetManagedDelegate (PollableSourceFuncNative native)
|
||||
{
|
||||
if (native == null)
|
||||
return null;
|
||||
PollableSourceFuncWrapper wrapper = (PollableSourceFuncWrapper) native.Target;
|
||||
if (wrapper == null)
|
||||
return null;
|
||||
return wrapper.managed;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user