advapi32: Add stub for ReadEncryptedFileRaw.
This commit is contained in:
parent
27f00d4f68
commit
8ca36632e9
|
@ -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)
|
||||
|
|
|
@ -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.@)
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue