mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
30 lines
506 B
C#
30 lines
506 B
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace GES {
|
|
|
|
using System;
|
|
|
|
public delegate void MarkerMovedHandler(object o, MarkerMovedArgs args);
|
|
|
|
public class MarkerMovedArgs : GLib.SignalArgs {
|
|
public ulong PreviousPosition{
|
|
get {
|
|
return (ulong) Args [0];
|
|
}
|
|
}
|
|
|
|
public ulong NewPosition{
|
|
get {
|
|
return (ulong) Args [1];
|
|
}
|
|
}
|
|
|
|
public GES.Marker Marker{
|
|
get {
|
|
return (GES.Marker) Args [2];
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|