Stub for CryptCATAdminReleaseContext.
This commit is contained in:
parent
920ef0fbc9
commit
a740045064
|
@ -2,7 +2,7 @@
|
|||
@ stub CryptCATAdminCalcHashFromFileHandle
|
||||
@ stub CryptCATAdminEnumCatalogFromHash
|
||||
@ stub CryptCATAdminPauseServiceForBackup
|
||||
@ stub CryptCATAdminReleaseContext
|
||||
@ stdcall CryptCATAdminReleaseContext(long long)
|
||||
@ stub CryptCATAdminReleaseCatalogContext
|
||||
@ stub CryptCATAdminRemoveCatalog
|
||||
@ stub CryptCATAdminResolveCatalogPath
|
||||
|
|
|
@ -42,6 +42,16 @@ BOOL WINAPI CryptCATAdminAcquireContext(HCATADMIN* catAdmin,
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CryptCATAdminReleaseContext (WINTRUST.@)
|
||||
*/
|
||||
BOOL WINAPI CryptCATAdminReleaseContext(HCATADMIN hCatAdmin, DWORD dwFlags )
|
||||
{
|
||||
FIXME("%p %lx\n", hCatAdmin, dwFlags);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* WinVerifyTrust (WINTRUST.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue