mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-27 21:31:06 +00:00
17 lines
238 B
C#
17 lines
238 B
C#
|
//
|
||
|
// SeekPosition.cs: GnomeVFSSeekPosition enum.
|
||
|
//
|
||
|
// Author:
|
||
|
// Jeroen Zwartepoorte <jeroen@xs4all.nl>
|
||
|
//
|
||
|
// (C) Copyright Jeroen Zwartepoorte 2004
|
||
|
//
|
||
|
|
||
|
namespace Gnome.Vfs {
|
||
|
public enum SeekPosition {
|
||
|
Start,
|
||
|
Current,
|
||
|
End
|
||
|
}
|
||
|
}
|