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.

77 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 1990 Microsoft Corporation
  3. Module Name:
  4. psldt.c
  5. Abstract:
  6. This module contains mips stubs for the Io port handler support
  7. Author:
  8. Dave Hastings (daveh) 26 Jan 1991
  9. Revision History:
  10. --*/
  11. #include "psp.h"
  12. NTSTATUS
  13. PspSetProcessIoHandlers(
  14. IN PEPROCESS Process,
  15. IN PVOID IoHandlerInformation,
  16. IN ULONG IoHandlerLength
  17. )
  18. /*++
  19. Routine Description:
  20. This routine returns STATUS_NOT_IMPLEMENTED
  21. Arguments:
  22. Process -- Supplies a pointer to the process for which Io port handlers
  23. are to be installed
  24. IoHandlerInformation -- Supplies a pointer to the information about the
  25. io port handlers
  26. IoHandlerLength -- Supplies the length of the IoHandlerInformation
  27. structure.
  28. Return Value:
  29. Returns STATUS_NOT_IMPLEMENTED
  30. --*/
  31. {
  32. UNREFERENCED_PARAMETER(Process);
  33. UNREFERENCED_PARAMETER(IoHandlerInformation);
  34. UNREFERENCED_PARAMETER(IoHandlerLength);
  35. return STATUS_NOT_IMPLEMENTED;
  36. }
  37. VOID
  38. PspDeleteVdmObjects(
  39. IN PEPROCESS Process
  40. )
  41. /*++
  42. Routine Description:
  43. This is a stub for the Vdm Objects delete routine
  44. Arguments:
  45. Process -- Supplies a pointer to the process
  46. Return Value:
  47. None
  48. --*/
  49. {
  50. UNREFERENCED_PARAMETER(Process);
  51. }