Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

129 lines
2.8 KiB

/*++
Copyright (c) 1999 Microsoft Corporation
Module Name:
stub.c
Abstract:
Stubbed out Windows File Protection APIs. These APIs are "Millenium" SFC
apis, which we simply stub out so that any clients programming to these
APIs may work on both platforms
Author:
Andrew Ritz (andrewr) 23-Sep-1999
Revision History:
--*/
#include "sfcp.h"
#pragma hdrstop
#include <srrestoreptapi.h>
DWORD
WINAPI
SfpInstallCatalog(
IN LPCSTR pszCatName,
IN LPCSTR pszCatDependency,
IN PVOID Reserved
)
{
return ERROR_CALL_NOT_IMPLEMENTED;
}
DWORD
WINAPI
SfpDeleteCatalog(
IN LPCSTR pszCatName,
IN PVOID Reserved
)
{
return ERROR_CALL_NOT_IMPLEMENTED;
}
BOOL
WINAPI
SfpVerifyFile(
IN LPCSTR pszFileName,
IN LPSTR pszError,
IN DWORD dwErrSize
)
{
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return(FALSE);
}
#undef SRSetRestorePoint
#undef SRSetRestorePointA
#undef SRSetRestorePointW
typedef BOOL (WINAPI * PSETRESTOREPOINTA) (PRESTOREPOINTINFOA, PSTATEMGRSTATUS);
typedef BOOL (WINAPI * PSETRESTOREPOINTW) (PRESTOREPOINTINFOW, PSTATEMGRSTATUS);
BOOL
WINAPI
SRSetRestorePointA ( PRESTOREPOINTINFOA pRestorePtSpec,
PSTATEMGRSTATUS pSMgrStatus )
{
HMODULE hClient = LoadLibrary (L"SRCLIENT.DLL");
BOOL fReturn = FALSE;
if (hClient != NULL)
{
PSETRESTOREPOINTA pSetRestorePointA = (PSETRESTOREPOINTA )
GetProcAddress (hClient, "SRSetRestorePointA");
if (pSetRestorePointA != NULL)
{
fReturn = (* pSetRestorePointA) (pRestorePtSpec, pSMgrStatus);
}
else if (pSMgrStatus != NULL)
pSMgrStatus->nStatus = ERROR_CALL_NOT_IMPLEMENTED;
FreeLibrary (hClient);
}
else if (pSMgrStatus != NULL)
pSMgrStatus->nStatus = ERROR_CALL_NOT_IMPLEMENTED;
return fReturn;
}
BOOL
WINAPI
SRSetRestorePointW ( PRESTOREPOINTINFOW pRestorePtSpec,
PSTATEMGRSTATUS pSMgrStatus )
{
HMODULE hClient = LoadLibrary (L"SRCLIENT.DLL");
BOOL fReturn = FALSE;
if (hClient != NULL)
{
PSETRESTOREPOINTW pSetRestorePointW = (PSETRESTOREPOINTW )
GetProcAddress (hClient, "SRSetRestorePointW");
if (pSetRestorePointW != NULL)
{
fReturn = (* pSetRestorePointW) (pRestorePtSpec, pSMgrStatus);
}
else if (pSMgrStatus != NULL)
pSMgrStatus->nStatus = ERROR_CALL_NOT_IMPLEMENTED;
FreeLibrary (hClient);
}
else if (pSMgrStatus != NULL)
pSMgrStatus->nStatus = ERROR_CALL_NOT_IMPLEMENTED;
return fReturn;
}