Source code of Windows XP (NT5)
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.

52 lines
947 B

  1. #ifndef _FSAITEMR_
  2. #define _FSAITEMR_
  3. /*++
  4. 1998 Seagate Software, Inc. All rights reserved.
  5. Module Name:
  6. FsaItemR.h
  7. Abstract:
  8. This header file defines special helper function needed for
  9. the reparse point data.
  10. Author:
  11. Michael Lotz [lotz] 3-Mar-1997
  12. Revision History:
  13. --*/
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. // Helper Functions
  18. extern HRESULT CopyRPDataToPlaceholder( IN CONST PRP_DATA pReparseData,
  19. OUT FSA_PLACEHOLDER *pPlaceholder );
  20. extern HRESULT OpenDocView (
  21. IN WCHAR const *pwszFile,
  22. IN ULONG CreateOptions,
  23. IN ULONG DesiredAccess,
  24. IN ULONG ShareAccess,
  25. IN ULONG CreateDisposition,
  26. OUT IO_STATUS_BLOCK *IoStatusBlock,
  27. OUT HANDLE *ObjectHandle
  28. );
  29. #ifdef __cplusplus
  30. }
  31. #endif
  32. #endif // _FSAITEMR_