singrdk/base/Interfaces/Singularity.V1/Security/PrincipalHandle.csi

25 lines
655 B
Plaintext
Raw Normal View History

2008-03-05 09:52:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity - Singularity ABI
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: PrincipalHandle.csi
//
// Note:
//
using System;
using System.Runtime.CompilerServices;
namespace Microsoft.Singularity.V1.Security
{
public struct PrincipalHandle
{
public readonly ulong val;
public static PrincipalHandle SelfPrincipalHandle();
public static string GetPrincipalName(PrincipalHandle handle);
public static string ExpandAclIndirection(string name);
}
}