bcrypt: Add a stub for BCryptCloseAlgorithmProvider.
This commit is contained in:
parent
f3b0f488b8
commit
c8c609b59d
|
@ -1,6 +1,6 @@
|
||||||
@ stub BCryptAddContextFunction
|
@ stub BCryptAddContextFunction
|
||||||
@ stub BCryptAddContextFunctionProvider
|
@ stub BCryptAddContextFunctionProvider
|
||||||
@ stub BCryptCloseAlgorithmProvider
|
@ stdcall BCryptCloseAlgorithmProvider(ptr long)
|
||||||
@ stub BCryptConfigureContext
|
@ stub BCryptConfigureContext
|
||||||
@ stub BCryptConfigureContextFunction
|
@ stub BCryptConfigureContextFunction
|
||||||
@ stub BCryptCreateContext
|
@ stub BCryptCreateContext
|
||||||
|
|
|
@ -90,3 +90,10 @@ NTSTATUS WINAPI BCryptOpenAlgorithmProvider(BCRYPT_ALG_HANDLE *algorithm, LPCWST
|
||||||
|
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
NTSTATUS WINAPI BCryptCloseAlgorithmProvider(BCRYPT_ALG_HANDLE algorithm, DWORD flags)
|
||||||
|
{
|
||||||
|
FIXME("%p, %08x - stub\n", algorithm, flags);
|
||||||
|
|
||||||
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue