git-svn-id: svn://anonsvn.mono-project.com/source/branches/abock/gstreamer-sharp@60875 e3ebcda4-bce8-0310-ba0a-eca2169e7518
10 lines
248 B
Plaintext
10 lines
248 B
Plaintext
|
|
[DllImport("gstreamer-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);
|
|
}
|
|
|