advapi32: Add stub for WriteEncryptedFileRaw.

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

View File

@ -825,4 +825,4 @@
# @ stub WmiSetSingleItemA
# @ stub WmiSetSingleItemW
# @ stub Wow64Win32ApiEntry
# @ stub WriteEncryptedFileRaw
@ stdcall WriteEncryptedFileRaw(ptr ptr ptr)

View File

@ -2434,3 +2434,22 @@ NTSTATUS WINAPI SystemFunction041(PVOID memory, ULONG length, ULONG flags)
FIXME("(%p, %x, %x): stub [RtlDecryptMemory]\n", memory, length, flags);
return STATUS_SUCCESS;
}
/******************************************************************************
* WriteEncryptedFileRaw (ADVAPI32.@)
*
* Import encrypted files
*
* PARAMS
* import [I] pointer to the import callback function
* callback [I] pointer to the application defined context
* context [I] pointer to the system context
* RETURNS
* Success: ERROR_SUCCESS
* Failure: NTSTATUS error code
*/
DWORD WINAPI WriteEncryptedFileRaw(PFE_IMPORT_FUNC import, PVOID callback, PVOID context)
{
FIXME("(%p, %p, %p): stub\n", import, callback, context);
return ERROR_CALL_NOT_IMPLEMENTED;
}