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.

50 lines
945 B

  1. /******************************************************************************
  2. *
  3. * Copyright (c) 2000 Microsoft Corporation
  4. *
  5. * Module Name:
  6. * srdefs.h
  7. *
  8. * Abstract:
  9. * declarations for snapshot patch functions
  10. *
  11. * Revision History:
  12. * Brijesh Krishnaswami (brijeshk) 03/23/2001
  13. * created
  14. *
  15. *****************************************************************************/
  16. #ifndef _SNAPPATCH_H
  17. #define _SNAPPATCH_H
  18. DWORD
  19. PatchGetReferenceRpNum(
  20. DWORD dwCurrentRp);
  21. DWORD
  22. PatchReconstructOriginal(
  23. LPCWSTR pszCurrentDir,
  24. LPWSTR pszDestDir);
  25. DWORD
  26. PatchComputePatch(
  27. LPCWSTR pszCurrentDir);
  28. DWORD
  29. PatchGetRpNumberFromPath(
  30. LPWSTR pszPath,
  31. PDWORD pdwRpNum);
  32. DWORD
  33. PatchGetReferenceRpPath(
  34. DWORD dwCurrentRp,
  35. LPWSTR pszRefRpPath);
  36. DWORD
  37. PatchGetReferenceRpNum(
  38. DWORD dwCurrentRp);
  39. DWORD
  40. PatchGetPatchWindow();
  41. #endif