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.

94 lines
1.5 KiB

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. ea.c
  5. Abstract:
  6. This module implements the DAV Mini-Redir call down routines pertaining to
  7. query/set ea/security.
  8. Author:
  9. Shishir Pardikar [ShishirP] 04/24/2001
  10. Revision History:
  11. --*/
  12. #include "precomp.h"
  13. #pragma hdrstop
  14. #include "webdav.h"
  15. #ifdef ALLOC_PRAGMA
  16. #pragma alloc_text(PAGE, MRxDAVQueryEaInformation)
  17. #pragma alloc_text(PAGE, MRxDAVSetEaInformation)
  18. #endif
  19. //
  20. // Implementation of functions begins here.
  21. //
  22. NTSTATUS
  23. MRxDAVQueryEaInformation(
  24. IN OUT PRX_CONTEXT RxContext
  25. )
  26. /*++
  27. Routine Description:
  28. This routine handles Query EA Info requests for the DAV Mini-Redir. For now,
  29. we just return STATUS_EAS_NOT_SUPPORTED.
  30. Arguments:
  31. RxContext - The RDBSS context.
  32. Return Value:
  33. RXSTATUS - The return status for the operation
  34. --*/
  35. {
  36. NTSTATUS NtStatus = STATUS_SUCCESS;
  37. PAGED_CODE();
  38. NtStatus = STATUS_EAS_NOT_SUPPORTED;
  39. return NtStatus;
  40. }
  41. NTSTATUS
  42. MRxDAVSetEaInformation(
  43. IN OUT PRX_CONTEXT RxContext
  44. )
  45. /*++
  46. Routine Description:
  47. This routine handles Set EA Info requests for the DAV Mini-Redir. For now,
  48. we just return STATUS_EAS_NOT_SUPPORTED.
  49. Arguments:
  50. RxContext - The RDBSS context.
  51. Return Value:
  52. RXSTATUS - The return status for the operation
  53. --*/
  54. {
  55. NTSTATUS NtStatus = STATUS_SUCCESS;
  56. PAGED_CODE();
  57. NtStatus = STATUS_EAS_NOT_SUPPORTED;
  58. return NtStatus;
  59. }