singrdk/base/Interfaces/Channels/Channels.csi

28 lines
722 B
Plaintext
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
2008-11-17 18:29:00 -05:00
// File: Channels.csi
2008-03-05 09:52:00 -05:00
//
// Note:
//
using System;
2008-11-17 18:29:00 -05:00
using Microsoft.Singularity.Channels;
using Allocation = Microsoft.Singularity.Memory.SharedHeap.Allocation;
2008-03-05 09:52:00 -05:00
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyKeyFileAttribute("public.snk")]
[assembly: System.Reflection.AssemblyDelaySignAttribute(true)]
2008-11-17 18:29:00 -05:00
namespace Microsoft.Singularity.Channels
2008-03-05 09:52:00 -05:00
{
2008-11-17 18:29:00 -05:00
public class ChannelDeliveryImplService
2008-03-05 09:52:00 -05:00
{
2008-11-17 18:29:00 -05:00
public static void Initialize();
2008-03-05 09:52:00 -05:00
}
2008-11-17 18:29:00 -05:00
}