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.

16 lines
384 B

  1. #if !defined(_FUSION_SXS_FILEOPER_H_INCLUDED_)
  2. #define _FUSION_SXS_FILEOPER_H_INCLUDED_
  3. #pragma once
  4. #define SXSP_COPY_FILE_FLAG_REPLACE_EXISTING (0x00000001)
  5. #define SXSP_COPY_FILE_FLAG_COMPRESSION_AWARE (0x00000002)
  6. BOOL
  7. SxspCopyFile(
  8. DWORD dwFlags,
  9. PCWSTR pszSource,
  10. PCWSTR pszDestination
  11. );
  12. #endif // !defined(_FUSION_SXS_FILEOPER_H_INCLUDED_)