advapi32: Add stub for CloseEncryptedFileRaw.
This commit is contained in:
parent
a98496a09a
commit
d5ef271ece
|
@ -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
|
||||
|
|
|
@ -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.@)
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue