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

21 lines
402 B
C#
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: IBusDevice.cs
//
// Note:
//
using System.Collections;
namespace Microsoft.Singularity.Io
{
public interface IBusDevice : IDevice
{
SortedList Enumerate();
}
}