Remove unused DllImports

This commit is contained in:
Sebastian Dröge 2009-04-30 17:16:00 +02:00
parent 15ae032d0a
commit 8152e6b9d6
2 changed files with 0 additions and 6 deletions

View file

@ -71,9 +71,6 @@ public byte this [uint index] {
}
}
[DllImport ("gstreamer-0.10.dll") ]
static extern IntPtr gst_buffer_make_metadata_writable (IntPtr raw);
/* FIXME: This is not optimal */
public void MakeMetadataWritable() {
if (IsMetadataWritable)

View file

@ -713,9 +713,6 @@ public void ParseNewClock (out Gst.Clock clock) {
[DllImport ("gstreamer-0.10.dll") ]
static extern IntPtr gst_message_new_application (IntPtr src, IntPtr structure);
[DllImport ("gstreamer-0.10.dll") ]
static extern IntPtr gst_structure_copy (IntPtr handle);
public static Message NewApplication (Gst.Object src, Gst.Structure structure) {
Message msg = (Message) GLib.Opaque.GetOpaque (gst_message_new_application (src.Handle, (structure != null) ? structure.Handle : IntPtr.Zero), typeof (Message), true);
msg.cached_structure = structure;