advapi32: Add stub for CloseEncryptedFileRaw.

This commit is contained in:
Austin English 2014-08-29 18:18:59 -05:00 committed by Alexandre Julliard
parent a98496a09a
commit d5ef271ece
2 changed files with 18 additions and 1 deletions

View File

@ -84,7 +84,7 @@
@ stdcall ClearEventLogA (long str)
@ stdcall ClearEventLogW (long wstr)
# @ stub CloseCodeAuthzLevel
# @ stub CloseEncryptedFileRaw
@ stdcall CloseEncryptedFileRaw(ptr)
@ stdcall CloseEventLog (long)
@ stdcall CloseServiceHandle(long)
# @ stub CloseThreadWaitChainSession

View File

@ -319,6 +319,23 @@ static void CRYPT_CreateMachineGuid(void)
}
}
/******************************************************************************
* CloseEncryptedFileRaw (ADVAPI32.@)
*
* Close encrypted files
*
* PARAMS
* context [I] pointer to the context
* RETURNS
* Success: ERROR_SUCCESS
* Failure: NTSTATUS error code
*/
void WINAPI CloseEncryptedFileRaw(PVOID context)
{
FIXME("(%p): stub\n", context);
}
/******************************************************************************
* CryptAcquireContextW (ADVAPI32.@)
*