advapi32: Implement LsaSetSecret stub.
This commit is contained in:
parent
2c594fb79c
commit
b740819e30
|
@ -397,7 +397,7 @@
|
|||
@ stdcall LsaSetInformationPolicy(long long ptr)
|
||||
@ stub LsaSetInformationTrustedDomain
|
||||
# @ stub LsaSetQuotasForAccount
|
||||
@ stub LsaSetSecret
|
||||
@ stdcall LsaSetSecret(ptr ptr ptr)
|
||||
# @ stub LsaSetSecurityObject
|
||||
@ stub LsaSetSystemAccessAccount
|
||||
@ stdcall LsaSetTrustedDomainInfoByName(ptr ptr long ptr)
|
||||
|
|
|
@ -623,6 +623,30 @@ NTSTATUS WINAPI LsaSetInformationPolicy(
|
|||
return STATUS_UNSUCCESSFUL;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* LsaSetSecret [ADVAPI32.@]
|
||||
*
|
||||
* Set old and new values on a secret handle
|
||||
*
|
||||
* PARAMS
|
||||
* SecretHandle [I] Handle to a secret object.
|
||||
* EncryptedCurrentValue [I] Pointer to encrypted new value, can be NULL
|
||||
* EncryptedOldValue [I] Pointer to encrypted old value, can be NULL
|
||||
*
|
||||
* RETURNS
|
||||
* Success: STATUS_SUCCESS
|
||||
* Failure: NTSTATUS code.
|
||||
*/
|
||||
NTSTATUS WINAPI LsaSetSecret(
|
||||
IN LSA_HANDLE SecretHandle,
|
||||
IN PLSA_UNICODE_STRING EncryptedCurrentValue,
|
||||
IN PLSA_UNICODE_STRING EncryptedOldValue)
|
||||
{
|
||||
FIXME("(%p,%p,%p) stub\n", SecretHandle, EncryptedCurrentValue,
|
||||
EncryptedOldValue);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* LsaSetTrustedDomainInfoByName [ADVAPI32.@]
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue