From 8152e6b9d6f1b50d214b22c635af48c81e12d80a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 30 Apr 2009 17:16:00 +0200 Subject: [PATCH] Remove unused DllImports --- gstreamer-sharp/Buffer.custom | 3 --- gstreamer-sharp/Message.custom | 3 --- 2 files changed, 6 deletions(-) diff --git a/gstreamer-sharp/Buffer.custom b/gstreamer-sharp/Buffer.custom index d69f0455a5..30e72f4000 100644 --- a/gstreamer-sharp/Buffer.custom +++ b/gstreamer-sharp/Buffer.custom @@ -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) diff --git a/gstreamer-sharp/Message.custom b/gstreamer-sharp/Message.custom index 584bb86dc6..f9a7a2ecdb 100644 --- a/gstreamer-sharp/Message.custom +++ b/gstreamer-sharp/Message.custom @@ -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;