gstreamer/gstreamer-sharp/Debug.custom
Maarten Bosmans f665c749b6 Use libgst*.dll in DllImport attribute, instead of gst*.dll
Nescessary for .NET, which doesn't prefix the library filename
with lib automatically.
2009-05-25 12:09:52 +02:00

8 lines
243 B
Text

[DllImport("libgstreamer-0.10.dll") ]
static extern void gst_debug_set_default_threshold (Gst.DebugLevel debug_level);
public static void SetDefaultThreshold (Gst.DebugLevel debug_level) {
gst_debug_set_default_threshold (debug_level);
}