sfc_os: Return success in SRSetRestorePointA/W.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
56b4d35d52
commit
78ebf5231b
|
@ -143,13 +143,13 @@ DWORD WINAPI SfcConnectToServer(DWORD unknown)
|
|||
BOOL WINAPI SRSetRestorePointA(RESTOREPOINTINFOA *restorepoint, STATEMGRSTATUS *status)
|
||||
{
|
||||
FIXME("%p %p\n", restorepoint, status);
|
||||
status->nStatus = ERROR_SERVICE_DISABLED;
|
||||
status->nStatus = ERROR_SUCCESS;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI SRSetRestorePointW(RESTOREPOINTINFOW *restorepoint, STATEMGRSTATUS *status)
|
||||
{
|
||||
FIXME("%p %p\n", restorepoint, status);
|
||||
status->nStatus = ERROR_SERVICE_DISABLED;
|
||||
status->nStatus = ERROR_SUCCESS;
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue