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.

125 lines
1.9 KiB

  1. /*++
  2. Copyright (c) 1989 - 1999 Microsoft Corporation
  3. Module Name:
  4. notimpl.c
  5. Abstract:
  6. This module includes prototypes of the functionality that has not been
  7. implemented in the null mini rdr.
  8. --*/
  9. #include "precomp.h"
  10. #pragma hdrstop
  11. //
  12. // File System Control funcitonality
  13. //
  14. NTSTATUS
  15. NulMRxFsCtl(
  16. IN OUT PRX_CONTEXT RxContext)
  17. /*++
  18. Routine Description:
  19. This routine performs an FSCTL operation (remote) on a file across the network
  20. Arguments:
  21. RxContext - the RDBSS context
  22. Return Value:
  23. RXSTATUS - The return status for the operation
  24. --*/
  25. {
  26. NTSTATUS Status = STATUS_INVALID_DEVICE_REQUEST;
  27. DbgPrint("NulMRxFsCtl -> %08lx\n", Status);
  28. return Status;
  29. }
  30. NTSTATUS
  31. NulMRxNotifyChangeDirectoryCancellation(
  32. PRX_CONTEXT RxContext)
  33. /*++
  34. Routine Description:
  35. This routine is invoked when a directory change notification operation is cancelled.
  36. This example doesn't support it.
  37. Arguments:
  38. RxContext - the RDBSS context
  39. Return Value:
  40. NTSTATUS - The return status for the operation
  41. --*/
  42. {
  43. UNREFERENCED_PARAMETER(RxContext);
  44. return STATUS_SUCCESS;
  45. }
  46. NTSTATUS
  47. NulMRxNotifyChangeDirectory(
  48. IN OUT PRX_CONTEXT RxContext)
  49. /*++
  50. Routine Description:
  51. This routine performs a directory change notification operation.
  52. This example doesn't support it.
  53. Arguments:
  54. RxContext - the RDBSS context
  55. Return Value:
  56. RXSTATUS - The return status for the operation [not implemented]
  57. --*/
  58. {
  59. UNREFERENCED_PARAMETER(RxContext);
  60. return STATUS_NOT_IMPLEMENTED;
  61. }
  62. NTSTATUS
  63. NulMRxQuerySecurityInformation (
  64. IN OUT PRX_CONTEXT RxContext
  65. )
  66. {
  67. return STATUS_NOT_IMPLEMENTED;
  68. }
  69. NTSTATUS
  70. NulMRxSetSecurityInformation (
  71. IN OUT struct _RX_CONTEXT * RxContext
  72. )
  73. {
  74. return STATUS_NOT_IMPLEMENTED;
  75. }