21 lines
402 B
C#
21 lines
402 B
C#
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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();
|
|
}
|
|
}
|