summaryrefslogtreecommitdiff
path: root/samples
diff options
context:
space:
mode:
authorAaron Boxer <aaron.boxer@collabora.com>2019-10-24 10:00:17 -0400
committerAaron Boxer <aaron.boxer@collabora.com>2019-11-18 14:19:39 -0500
commit38a0731461f470d38560f9766188f4f700987f3c (patch)
treec3244512508cd24c6e14177fbe1b25632d0d4801 /samples
parentde2554e637bda4dfe7466f6d3e8be6a0d2ed0538 (diff)
build: on Windows, use MSVC format for gst*, glib and gobject dlls
Generated files were generated using 'ninja -C build update-code' except for libgstfft, which had to be updated manually (see issue #25). Note: with these changes, building on MS Windows will require the msvc compiler - mingw will no longer work.
Diffstat (limited to 'samples')
-rw-r--r--samples/BasicTutorial5.cs2
-rw-r--r--samples/BasicTutorial6.cs2
-rw-r--r--samples/VideoOverlay.cs2
3 files changed, 3 insertions, 3 deletions
diff --git a/samples/BasicTutorial5.cs b/samples/BasicTutorial5.cs
index ce32080..16cae4d 100644
--- a/samples/BasicTutorial5.cs
+++ b/samples/BasicTutorial5.cs
@@ -358,7 +358,7 @@ namespace GstreamerSharp
[DllImport ("libgdk-3.so.0") ]
static extern IntPtr gdk_x11_window_get_xid (IntPtr handle);
- [DllImport ("libgdk-win32-3.0-0.dll") ]
+ [DllImport ("gdk-win32-3.0-0.dll") ]
static extern IntPtr gdk_win32_drawable_get_handle (IntPtr handle);
[DllImport ("libX11.so.6")]
diff --git a/samples/BasicTutorial6.cs b/samples/BasicTutorial6.cs
index 87c2b4a..e5dbf2d 100644
--- a/samples/BasicTutorial6.cs
+++ b/samples/BasicTutorial6.cs
@@ -190,7 +190,7 @@ namespace GstreamerSharp
pipeline.SetState (State.Null);
}
- [DllImport ("libglib-2.0.dll")]
+ [DllImport ("glib-2.0.dll")]
static extern IntPtr g_quark_to_string (uint quark);
}
} \ No newline at end of file
diff --git a/samples/VideoOverlay.cs b/samples/VideoOverlay.cs
index e0e335b..7bc9b1a 100644
--- a/samples/VideoOverlay.cs
+++ b/samples/VideoOverlay.cs
@@ -265,7 +265,7 @@ namespace Gstreameroverlay
[DllImport ("libgdk-3.so.0") ]
static extern IntPtr gdk_x11_window_get_xid (IntPtr handle);
- [DllImport ("libgdk-win32-3.0-0.dll") ]
+ [DllImport ("gdk-win32-3.0-0.dll") ]
static extern IntPtr gdk_win32_drawable_get_handle (IntPtr handle);
[DllImport ("libX11.so.6")]