Aaron Bockover b94528f8e7 Initial import of the sleek new gstreamer-sharp, a massive WIP
git-svn-id: svn://anonsvn.mono-project.com/source/branches/abock/gstreamer-sharp@60875 e3ebcda4-bce8-0310-ba0a-eca2169e7518
2006-05-19 19:24:35 +00:00

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);
}