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.
50 lines
945 B
50 lines
945 B
/******************************************************************************
|
|
*
|
|
* Copyright (c) 2000 Microsoft Corporation
|
|
*
|
|
* Module Name:
|
|
* srdefs.h
|
|
*
|
|
* Abstract:
|
|
* declarations for snapshot patch functions
|
|
*
|
|
* Revision History:
|
|
* Brijesh Krishnaswami (brijeshk) 03/23/2001
|
|
* created
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifndef _SNAPPATCH_H
|
|
#define _SNAPPATCH_H
|
|
|
|
DWORD
|
|
PatchGetReferenceRpNum(
|
|
DWORD dwCurrentRp);
|
|
|
|
DWORD
|
|
PatchReconstructOriginal(
|
|
LPCWSTR pszCurrentDir,
|
|
LPWSTR pszDestDir);
|
|
|
|
DWORD
|
|
PatchComputePatch(
|
|
LPCWSTR pszCurrentDir);
|
|
|
|
DWORD
|
|
PatchGetRpNumberFromPath(
|
|
LPWSTR pszPath,
|
|
PDWORD pdwRpNum);
|
|
|
|
DWORD
|
|
PatchGetReferenceRpPath(
|
|
DWORD dwCurrentRp,
|
|
LPWSTR pszRefRpPath);
|
|
|
|
DWORD
|
|
PatchGetReferenceRpNum(
|
|
DWORD dwCurrentRp);
|
|
|
|
DWORD
|
|
PatchGetPatchWindow();
|
|
|
|
#endif
|