Commit 000b637f authored by Alexandre Julliard's avatar Alexandre Julliard

sfc_os: Stub SfpVerifyFile().

parent ea1eae64
......@@ -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
......@@ -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);
......
......@@ -15,4 +15,4 @@
@ stub SfcTerminateWatcherThread
@ stub SfpDeleteCatalog
@ stub SfpInstallCatalog
@ stub SfpVerifyFile
@ stdcall SfpVerifyFile(str ptr long)
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