sfc_os: Stub SfpVerifyFile().

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2022-05-02 22:43:37 +02:00
parent ea1eae646d
commit 000b637fa0
3 changed files with 9 additions and 2 deletions

View File

@ -13,4 +13,4 @@
@ stdcall SfcGetNextProtectedFile(long ptr) sfc_os.SfcGetNextProtectedFile
@ stdcall SfcIsFileProtected(ptr wstr) sfc_os.SfcIsFileProtected
@ stdcall SfcIsKeyProtected(long wstr long) sfc_os.SfcIsKeyProtected
@ stdcall SfpVerifyFile() sfc_os.SfpVerifyFile
@ stdcall SfpVerifyFile(str ptr long) sfc_os.SfpVerifyFile

View File

@ -123,6 +123,13 @@ DWORD WINAPI SfcConnectToServer(DWORD unknown)
return 0;
}
BOOL WINAPI SfpVerifyFile(LPCSTR filename, LPSTR error, DWORD size)
{
FIXME("%s: stub\n", debugstr_a(filename));
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
BOOL WINAPI SRSetRestorePointA(RESTOREPOINTINFOA *restorepoint, STATEMGRSTATUS *status)
{
FIXME("%p %p\n", restorepoint, status);

View File

@ -15,4 +15,4 @@
@ stub SfcTerminateWatcherThread
@ stub SfpDeleteCatalog
@ stub SfpInstallCatalog
@ stub SfpVerifyFile
@ stdcall SfpVerifyFile(str ptr long)