sfc: Add SfcGetNextProtectedFile stub.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2015-10-27 00:12:04 -05:00 committed by Alexandre Julliard
parent 7c92862071
commit c715127536
3 changed files with 11 additions and 2 deletions

View File

@ -7,7 +7,7 @@
7 stub @
8 stub @
9 stub @
@ stub SfcGetNextProtectedFile
@ stdcall SfcGetNextProtectedFile(long ptr) sfc_os.SfcGetNextProtectedFile
@ stdcall SfcIsFileProtected(ptr wstr) sfc_os.SfcIsFileProtected
@ stdcall SfcIsKeyProtected(long wstr long) sfc_os.SfcIsKeyProtected
@ stub SfcWLEventLogoff

View File

@ -48,6 +48,15 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return TRUE;
}
/******************************************************************
* SfcGetNextProtectedFile [sfc_os.@]
*/
BOOL WINAPI SfcGetNextProtectedFile(HANDLE handle, PROTECTED_FILE_DATA *data)
{
FIXME("%p %p\n", handle, data);
return FALSE;
}
/******************************************************************
* SfcIsFileProtected [sfc_os.@]
*

View File

@ -1,3 +1,3 @@
@ stub SfcGetNextProtectedFile
@ stdcall SfcGetNextProtectedFile(long ptr)
@ stdcall SfcIsFileProtected(ptr wstr)
@ stdcall SfcIsKeyProtected(long wstr long)