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:
parent
7c92862071
commit
c715127536
|
@ -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
|
||||
|
|
|
@ -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.@]
|
||||
*
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
@ stub SfcGetNextProtectedFile
|
||||
@ stdcall SfcGetNextProtectedFile(long ptr)
|
||||
@ stdcall SfcIsFileProtected(ptr wstr)
|
||||
@ stdcall SfcIsKeyProtected(long wstr long)
|
||||
|
|
Loading…
Reference in New Issue