fixed some stuff

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2381 21ef857c-d57f-4fe0-8362-d861dc6d29cd
This commit is contained in:
wj32
2009-11-28 10:07:41 +00:00
parent 7f4ccb48c1
commit 408a2b1da3
2 changed files with 8 additions and 0 deletions
@@ -77,6 +77,11 @@ namespace ProcessHacker.Native.Objects
Win32.LsaDeregisterLogonProcess(this);
}
public TokenHandle LogonUser(SecurityLogonType logonType, IAuthenticationPackage package)
{
return this.LogonUser("PH.N", logonType, package);
}
public TokenHandle LogonUser(string originName, SecurityLogonType logonType, IAuthenticationPackage package)
{
object profileData;
@@ -11,6 +11,9 @@ namespace ProcessHacker.Native.Security.Authentication
private string _userName;
private string _password;
public Msv1_0_InteractivePackage()
{ }
public Msv1_0_InteractivePackage(Sid sid)
: this(sid, null)
{ }