Commit c8c609b5 authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

bcrypt: Add a stub for BCryptCloseAlgorithmProvider.

parent f3b0f488
@ stub BCryptAddContextFunction
@ stub BCryptAddContextFunctionProvider
@ stub BCryptCloseAlgorithmProvider
@ stdcall BCryptCloseAlgorithmProvider(ptr long)
@ stub BCryptConfigureContext
@ stub BCryptConfigureContextFunction
@ stub BCryptCreateContext
......
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment