Ryujinx-GtkSharp/gnomevfs/Result.cs
Mike Kestner 7f3171c814 merge to HEAD of jeroen and friends' work on the 2-4 branch. HEAD
is now tracking Gnome 2.6.

svn path=/trunk/gtk-sharp/; revision=35479
2004-10-29 20:33:07 +00:00

61 lines
878 B
C#

//
// Result.cs: GnomeVFSResult enum.
//
// Author:
// Jeroen Zwartepoorte <jeroen@xs4all.nl>
//
// (C) Copyright Jeroen Zwartepoorte 2004
//
namespace Gnome.Vfs {
public enum Result {
Ok,
NotFound,
Generic,
Internal,
BadParameters,
NotSupported,
Io,
CorruptedData,
WrongFormat,
BadFile,
TooBig,
NoSpace,
ReadOnly,
InvalidUri,
NotOpen,
InvalidOpenMode,
AccessDenied,
TooManyOpenFiles,
Eof,
NotADirectory,
InProgress,
Interrupted,
FileExists,
Loop,
NotPermitted,
IsDirectory,
NoMemory,
HostNotFound,
InvalidHostName,
HostHasNoAddress,
LoginFailed,
Cancelled,
DirectoryBusy,
DirectoryNotEmpty,
TooManyLinks,
ReadOnlyFileSystem,
NotSameFileSystem,
NameTooLong,
ServiceNotAvailable,
ServiceObsolete,
ProtocolError,
NoMasterBrowser,
NoDefault,
NoHandler,
Parse,
Launch,
NumErrors
}
}