mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
f665c749b6
Nescessary for .NET, which doesn't prefix the library filename with lib automatically.
8 lines
243 B
Text
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);
|
|
}
|
|
|