~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.GtkCore/libstetic/GladeUtils.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
739
739
                                        signal_elem.SetAttribute ("after", "yes");
740
740
                                parent_elem.AppendChild (signal_elem);
741
741
                        }
742
 
                }
743
 
                
744
 
                [DllImport("libgobject-2.0-0.dll")]
745
 
                static extern IntPtr g_type_fundamental (IntPtr gtype);
746
 
 
747
 
                [DllImport("libgobject-2.0-0.dll")]
748
 
                static extern IntPtr g_type_class_ref (IntPtr gtype);
749
 
 
750
 
                [DllImport("libgobject-2.0-0.dll")]
751
 
                static extern IntPtr g_type_class_unref (IntPtr klass);
752
 
 
753
 
                [DllImport("glibsharpglue-2")]
754
 
                static extern IntPtr gtksharp_object_newv (IntPtr gtype, int n_params, string[] names, GLib.Value[] vals);
755
 
 
756
 
                [DllImport("libgtk-win32-2.0-0.dll")]
757
 
                static extern void gtk_object_sink (IntPtr raw);
758
 
 
759
 
                [DllImport("libgobject-2.0-0.dll")]
760
 
                static extern void g_object_get_property (IntPtr obj, string name, ref GLib.Value val);
761
 
 
762
 
                [DllImport("libgobject-2.0-0.dll")]
763
 
                static extern void g_object_set_property (IntPtr obj, string name, ref GLib.Value val);
764
 
 
765
 
                [DllImport("libgtk-win32-2.0-0.dll")]
766
 
                static extern void gtk_container_child_get_property (IntPtr parent, IntPtr child, string name, ref GLib.Value val);
767
 
 
768
 
                [DllImport("libgobject-2.0-0.dll")]
769
 
                static extern IntPtr g_enum_get_value_by_name (IntPtr enum_class, string name);
770
 
 
771
 
                [DllImport("libgobject-2.0-0.dll")]
772
 
                static extern IntPtr g_enum_get_value (IntPtr enum_class, int val);
773
 
 
774
 
                [DllImport("libgobject-2.0-0.dll")]
775
 
                static extern IntPtr g_flags_get_value_by_name (IntPtr flags_class, string nick);
776
 
 
777
 
                [DllImport("libgobject-2.0-0.dll")]
 
742
                }
 
743
 
 
744
                [DllImport ("libgobject-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
 
745
                static extern IntPtr g_type_fundamental (IntPtr gtype);
 
746
 
 
747
                [DllImport ("libgobject-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
 
748
                static extern IntPtr g_type_class_ref (IntPtr gtype);
 
749
 
 
750
                [DllImport ("libgobject-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
 
751
                static extern IntPtr g_type_class_unref (IntPtr klass);
 
752
 
 
753
                [DllImport ("glibsharpglue-2", CallingConvention = CallingConvention.Cdecl)]
 
754
                static extern IntPtr gtksharp_object_newv (IntPtr gtype, int n_params, string[] names, GLib.Value[] vals);
 
755
 
 
756
                [DllImport ("libgtk-win32-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
 
757
                static extern void gtk_object_sink (IntPtr raw);
 
758
 
 
759
                [DllImport ("libgobject-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
 
760
                static extern void g_object_get_property (IntPtr obj, string name, ref GLib.Value val);
 
761
 
 
762
                [DllImport ("libgobject-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
 
763
                static extern void g_object_set_property (IntPtr obj, string name, ref GLib.Value val);
 
764
 
 
765
                [DllImport ("libgtk-win32-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
 
766
                static extern void gtk_container_child_get_property (IntPtr parent, IntPtr child, string name, ref GLib.Value val);
 
767
 
 
768
                [DllImport ("libgobject-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
 
769
                static extern IntPtr g_enum_get_value_by_name (IntPtr enum_class, string name);
 
770
 
 
771
                [DllImport ("libgobject-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
 
772
                static extern IntPtr g_enum_get_value (IntPtr enum_class, int val);
 
773
 
 
774
                [DllImport ("libgobject-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
 
775
                static extern IntPtr g_flags_get_value_by_name (IntPtr flags_class, string nick);
 
776
 
 
777
                [DllImport ("libgobject-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
778
778
                static extern IntPtr g_flags_get_first_value (IntPtr flags_class, uint val);
779
779
        }
780
780
}