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.

48 lines
884 B

  1. /*++
  2. Copyright (c) 1989 - 1999 Microsoft Corporation
  3. Module Name:
  4. mrxprocs.h
  5. Abstract:
  6. The module contains the prototype definitions for all cross referenced
  7. routines.
  8. --*/
  9. #ifndef _MRXPROCS_H_
  10. #define _MRXPROCS_H_
  11. //cross-referenced internal routines
  12. //from rename.c
  13. NulMRxRename(
  14. IN PRX_CONTEXT RxContext,
  15. IN FILE_INFORMATION_CLASS FileInformationClass,
  16. IN PVOID pBuffer,
  17. IN ULONG BufferLength);
  18. // from usrcnnct.c
  19. extern NTSTATUS
  20. NulMRxDeleteConnection (
  21. IN PRX_CONTEXT RxContext,
  22. OUT PBOOLEAN PostToFsp
  23. );
  24. NTSTATUS
  25. NulMRxCreateConnection (
  26. IN PRX_CONTEXT RxContext,
  27. OUT PBOOLEAN PostToFsp
  28. );
  29. NTSTATUS
  30. NulMRxDoConnection(
  31. IN PRX_CONTEXT RxContext,
  32. ULONG CreateDisposition
  33. );
  34. #endif // _MRXPROCS_H_