Support for DLU by allowing luid's to be passed by the system process.

This commit is contained in:
Jim Norman
2006-10-17 20:39:48 +00:00
parent 3f093e092d
commit 39fdc355c7
4 changed files with 103 additions and 9 deletions

View File

@@ -0,0 +1,29 @@
using System;
namespace Novell.Casa.Client.Auth
{
/// <summary>
/// Summary description for WinLuid.
/// </summary>
public class WinLuid
{
private int m_low = 0;
private int m_high = 0;
public WinLuid(int lowPart, int highPart )
{
m_low = lowPart;
m_high = highPart;
}
public int GetLowPart()
{
return m_low;
}
public int GetHighPart()
{
return m_high;
}
}
}