bcrypt: Add a stub for BCryptCloseAlgorithmProvider.

oldstable
Bruno Jesus 2014-06-24 23:53:42 -03:00 committed by Alexandre Julliard
parent f3b0f488b8
commit c8c609b59d
2 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,6 @@
@ stub BCryptAddContextFunction
@ stub BCryptAddContextFunctionProvider
@ stub BCryptCloseAlgorithmProvider
@ stdcall BCryptCloseAlgorithmProvider(ptr long)
@ stub BCryptConfigureContext
@ stub BCryptConfigureContextFunction
@ stub BCryptCreateContext

View File

@ -90,3 +90,10 @@ NTSTATUS WINAPI BCryptOpenAlgorithmProvider(BCRYPT_ALG_HANDLE *algorithm, LPCWST
return STATUS_NOT_IMPLEMENTED;
}
NTSTATUS WINAPI BCryptCloseAlgorithmProvider(BCRYPT_ALG_HANDLE algorithm, DWORD flags)
{
FIXME("%p, %08x - stub\n", algorithm, flags);
return STATUS_NOT_IMPLEMENTED;
}