gstreamer/gstreamer-sharp/Clock.custom
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

25 lines
742 B
Text

//
// Clock.custom
//
//
//
[DllImport ("gstsharpglue-0.10")]
extern static long gstsharp_gst_clock_get_gst_second ();
public static readonly long GstSecond = gstsharp_gst_clock_get_gst_second ();
[DllImport ("gstsharpglue-0.10")]
extern static long gstsharp_gst_clock_get_gst_msecond ();
public static readonly long GstMSecond = gstsharp_gst_clock_get_gst_second ();
[DllImport ("gstsharpglue-0.10")]
extern static long gstsharp_gst_clock_get_gst_usecond ();
public static readonly long GstUSecond = gstsharp_gst_clock_get_gst_second ();
[DllImport ("gstsharpglue-0.10")]
extern static long gstsharp_gst_clock_get_gst_nsecond ();
public static readonly long GstNSecond = gstsharp_gst_clock_get_gst_second ();