advapi32: Add stub for ReadEncryptedFileRaw.

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

View File

@ -566,7 +566,7 @@
@ stdcall QueryTraceW(int64 wstr ptr)
# @ stub QueryUsersOnEncryptedFile
@ stdcall QueryWindows31FilesMigration(long)
# @ stub ReadEncryptedFileRaw
@ stdcall ReadEncryptedFileRaw(ptr ptr ptr)
@ stdcall ReadEventLogA (long long long ptr long ptr ptr)
@ stdcall ReadEventLogW (long long long ptr long ptr ptr)
@ stdcall RegCloseKey(long)

View File

@ -2289,6 +2289,25 @@ DWORD WINAPI OpenEncryptedFileRawW(LPCWSTR filename, ULONG flags, PVOID *context
return ERROR_CALL_NOT_IMPLEMENTED;
}
/******************************************************************************
* ReadEncryptedFileRaw (ADVAPI32.@)
*
* Export encrypted files
*
* PARAMS
* export [I] pointer to the export 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 ReadEncryptedFileRaw(PFE_EXPORT_FUNC export, PVOID callback, PVOID context)
{
FIXME("(%p, %p, %p): stub\n", export, callback, context);
return ERROR_CALL_NOT_IMPLEMENTED;
}
/******************************************************************************
* SystemFunction030 (ADVAPI32.@)
*