Make LUID and ObtainAuthTokenEx private

This commit is contained in:
Jim Norman 2006-11-28 05:07:20 +00:00
parent a9dd659bca
commit 411e95b4f0

View File

@ -37,7 +37,7 @@ namespace Novell.Casa.Client.Auth
private const int BUFFER_OVERFLOW = 6; private const int BUFFER_OVERFLOW = 6;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public struct LUID private struct LUID
{ {
public int luidLow; public int luidLow;
public int luidHigh; public int luidHigh;
@ -81,7 +81,7 @@ namespace Novell.Casa.Client.Auth
return ObtainAuthToken(sService, sHost, null); return ObtainAuthToken(sService, sHost, null);
} }
public static byte[] ObtainAuthToken(string sService, string sHost, WinLuid luid) private static byte[] ObtainAuthToken(string sService, string sHost, WinLuid luid)
{ {
int rcode = 0; int rcode = 0;
byte[] baService = null; byte[] baService = null;