Beispiel #1
0
 static void SetModifiedCallback(IntPtr modifiable, bool modified)
 {
     try {
         Cdn.ModifiableImplementor __obj = GLib.Object.GetObject(modifiable, false) as Cdn.ModifiableImplementor;
         __obj.Modified = modified;
     } catch (Exception e) {
         GLib.ExceptionManager.RaiseUnhandledException(e, false);
     }
 }
Beispiel #2
0
 static bool GetModifiedCallback(IntPtr modifiable)
 {
     try {
         Cdn.ModifiableImplementor __obj = GLib.Object.GetObject(modifiable, false) as Cdn.ModifiableImplementor;
         bool __result = __obj.Modified;
         return(__result);
     } catch (Exception e) {
         GLib.ExceptionManager.RaiseUnhandledException(e, true);
         // NOTREACHED: above call does not return.
         throw e;
     }
 }