add missing API's in order to link an updated rpcrt4

svn path=/trunk/; revision=27755
This commit is contained in:
Ged Murphy 2007-07-20 13:49:41 +00:00
parent 8e87d40d23
commit 371e11e16c
2 changed files with 41 additions and 3 deletions

View file

@ -45,8 +45,8 @@ LsaEnumerateLogonSessions@8
LsaGetLogonSessionData@8
LsaRegisterPolicyChangeNotification@8
LsaUnregisterPolicyChangeNotification@8
;MakeSignature@16
;QueryContextAttributesA@12
MakeSignature@16
QueryContextAttributesA@12
QueryContextAttributesW@12
;QueryCredentialsAttributesA@12
;QueryCredentialsAttributesW@12
@ -76,4 +76,4 @@ QueryContextAttributesW@12
;TranslateNameA@20
;TranslateNameW@20
;UnsealMessage
;VerifySignature@16
VerifySignature@16

View file

@ -100,6 +100,16 @@ CompleteAuthToken(PCtxtHandle Handle,
return ERROR_CALL_NOT_IMPLEMENTED;
}
SECURITY_STATUS
WINAPI
QueryContextAttributesA(PCtxtHandle Handle,
ULONG Foo,
PVOID Bar)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
SECURITY_STATUS
WINAPI
QueryContextAttributesW(PCtxtHandle Handle,
@ -167,3 +177,31 @@ InitializeSecurityContextA (
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
SECURITY_STATUS
SEC_ENTRY
MakeSignature(
PCtxtHandle phContext,
ULONG fQOP,
PSecBufferDesc pMessage,
ULONG MessageSeqNo
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}
SECURITY_STATUS
SEC_ENTRY
VerifySignature(
PCtxtHandle phContext,
PSecBufferDesc pMessage,
ULONG MessageSeqNo,
PULONG pfQOP
)
{
DPRINT1("%s() not implemented!\n", __FUNCTION__);
return ERROR_CALL_NOT_IMPLEMENTED;
}