sfc_os: Set an error code in SfcGetNextProtectedFile stub.

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Müller 2018-03-04 10:51:25 -06:00 committed by Alexandre Julliard
parent 08cc41459b
commit 7dd74d5b50
1 changed files with 2 additions and 0 deletions

View File

@ -55,6 +55,8 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
BOOL WINAPI SfcGetNextProtectedFile(HANDLE handle, PROTECTED_FILE_DATA *data)
{
FIXME("%p %p\n", handle, data);
SetLastError(ERROR_NO_MORE_FILES);
return FALSE;
}