Files
KioskApp/GtkSharp/Source/Libs/GioSharp/Generated/GLib/ISeekable.cs
2024-09-15 22:40:48 +02:00

23 lines
456 B
C#

// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace GLib {
using System;
#region Autogenerated code
public partial interface ISeekable : GLib.IWrapper {
bool CanSeek {
get;
}
bool CanTruncate();
bool Seek(long offset, GLib.SeekType type, GLib.Cancellable cancellable);
long Position {
get;
}
bool Truncate(long offset, GLib.Cancellable cancellable);
}
#endregion
}