summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2009-04-30 17:16:00 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-04-30 17:16:00 +0200
commit8152e6b9d6f1b50d214b22c635af48c81e12d80a (patch)
tree340b8a8221614c4356c1e7e0379ee26c6b312d6d
parent15ae032d0a83301bf19a456693a76b9820fb371e (diff)
Remove unused DllImports
-rw-r--r--gstreamer-sharp/Buffer.custom3
-rw-r--r--gstreamer-sharp/Message.custom3
2 files changed, 0 insertions, 6 deletions
diff --git a/gstreamer-sharp/Buffer.custom b/gstreamer-sharp/Buffer.custom
index d69f045..30e72f4 100644
--- a/gstreamer-sharp/Buffer.custom
+++ b/gstreamer-sharp/Buffer.custom
@@ -71,9 +71,6 @@ public byte this [uint index] {
71 } 71 }
72} 72}
73 73
74[DllImport ("gstreamer-0.10.dll") ]
75static extern IntPtr gst_buffer_make_metadata_writable (IntPtr raw);
76
77/* FIXME: This is not optimal */ 74/* FIXME: This is not optimal */
78public void MakeMetadataWritable() { 75public void MakeMetadataWritable() {
79 if (IsMetadataWritable) 76 if (IsMetadataWritable)
diff --git a/gstreamer-sharp/Message.custom b/gstreamer-sharp/Message.custom
index 584bb86..f9a7a2e 100644
--- a/gstreamer-sharp/Message.custom
+++ b/gstreamer-sharp/Message.custom
@@ -713,9 +713,6 @@ public void ParseNewClock (out Gst.Clock clock) {
713[DllImport ("gstreamer-0.10.dll") ] 713[DllImport ("gstreamer-0.10.dll") ]
714static extern IntPtr gst_message_new_application (IntPtr src, IntPtr structure); 714static extern IntPtr gst_message_new_application (IntPtr src, IntPtr structure);
715 715
716[DllImport ("gstreamer-0.10.dll") ]
717static extern IntPtr gst_structure_copy (IntPtr handle);
718
719public static Message NewApplication (Gst.Object src, Gst.Structure structure) { 716public static Message NewApplication (Gst.Object src, Gst.Structure structure) {
720 Message msg = (Message) GLib.Opaque.GetOpaque (gst_message_new_application (src.Handle, (structure != null) ? structure.Handle : IntPtr.Zero), typeof (Message), true); 717 Message msg = (Message) GLib.Opaque.GetOpaque (gst_message_new_application (src.Handle, (structure != null) ? structure.Handle : IntPtr.Zero), typeof (Message), true);
721 msg.cached_structure = structure; 718 msg.cached_structure = structure;