Commit 8ca36632 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

advapi32: Add stub for ReadEncryptedFileRaw.

parent 27f00d4f
......@@ -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)
......
......@@ -2290,6 +2290,25 @@ DWORD WINAPI OpenEncryptedFileRawW(LPCWSTR filename, ULONG flags, PVOID *context
}
/******************************************************************************
* 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.@)
*
* Tests if two blocks of 16 bytes are equal
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment