singrdk/base/Kernel/Singularity/Io/IoResult.cs

24 lines
476 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: IoStatusCode.cs
//
// Note:
//
using System;
namespace Microsoft.Singularity.Io
{
public enum IoResult : int
{
Success = 0,
ReadNotSupported = 1,
WriteNotSupported = 2,
AccessOutOfRange = 4,
}
}