added some stubs (Photoshop CS seems to work now)

svn path=/trunk/; revision=20752
This commit is contained in:
Christoph von Wittich 2006-01-09 15:08:35 +00:00
parent 9bf83ebaf8
commit a2c387cc4f
2 changed files with 41 additions and 2 deletions

View file

@ -8,7 +8,7 @@ LsaLookupAuthenticationPackage@12
LsaFreeReturnBuffer@4
LsaCallAuthenticationPackage@28
;AcceptSecurityContext@36
;AcquireCredentialsHandleA@36
AcquireCredentialsHandleA@36
;AcquireCredentialsHandleW@36
;@AddCredentialsA
;@AddCredentialsW
@ -39,7 +39,7 @@ GetUserNameExW@12
;@ImportSecurityContextW
;@InitSecurityInterfaceA
;@InitSecurityInterfaceW
;InitializeSecurityContextA@48
InitializeSecurityContextA@48
;InitializeSecurityContextW@48
LsaEnumerateLogonSessions@8
LsaGetLogonSessionData@8

View file

@ -35,3 +35,42 @@ FreeContextBuffer (
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
SECURITY_STATUS
WINAPI
AcquireCredentialsHandleA (
SEC_CHAR* pszPrincipal,
SEC_CHAR* pszPackage,
ULONG fUsage,
PLUID pID,
PVOID pAuth,
SEC_GET_KEY_FN pGetKeyFn,
PVOID pvGetKeyArgument,
PCredHandle phCred,
PTimeStamp pExpires
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
SECURITY_STATUS
WINAPI
InitializeSecurityContextA (
PCredHandle phCred,
PCtxtHandle phContext,
SEC_CHAR* pszTarget,
ULONG fContextReq,
ULONG Reserved,
ULONG TargetData,
PSecBufferDesc pInput,
ULONG Reserved2,
PCtxtHandle phNewContext,
PSecBufferDesc pOut,
PULONG pfContextAttributes,
PTimeStamp pExpires
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}