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.

57 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1989 - 1999 Microsoft Corporation
  3. Module Name:
  4. rename.c
  5. Abstract:
  6. This module implements rename in the null minirdr.
  7. --*/
  8. #include "precomp.h"
  9. #pragma hdrstop
  10. //
  11. // The debug trace level
  12. //
  13. #define Dbg (DEBUG_TRACE_FILEINFO)
  14. NulMRxRename(
  15. IN PRX_CONTEXT RxContext,
  16. IN FILE_INFORMATION_CLASS FileInformationClass,
  17. IN PVOID pBuffer,
  18. IN ULONG BufferLength)
  19. /*++
  20. Routine Description:
  21. This routine does a rename. since the real NT-->NT path is not implemented at the server end,
  22. we implement just the downlevel path.
  23. Arguments:
  24. RxContext - the RDBSS context
  25. FILE_INFO_CLASS - must be rename....shouldn't really pass this
  26. pBuffer - pointer to the new name
  27. bufferlength - and the size
  28. Return Value:
  29. NTSTATUS - The return status for the operation
  30. --*/
  31. {
  32. NTSTATUS Status = STATUS_NOT_IMPLEMENTED;
  33. UNREFERENCED_PARAMETER(RxContext);
  34. DbgPrint("NulMRxRename \n");
  35. return(Status);
  36. }