Splitted the non-java project into client and server projects in order
to be able to deliver the client component onto distributions targeting desktops without having to deliver the server components. This commit is for the resulting client project.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user