Commit 7dd74d5b authored by Michael Müller's avatar Michael Müller Committed by Alexandre Julliard

sfc_os: Set an error code in SfcGetNextProtectedFile stub.

parent 08cc4145
......@@ -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;
}
......
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