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.

68 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. ioctl.c
  5. Abstract:
  6. Handler routines for Internal IOCTLs, including IOCTL_ATMARP_REQUEST
  7. to resolve an IP address to an ATM address.
  8. Revision History:
  9. Who When What
  10. -------- -------- ----------------------------------------------
  11. arvindm 09-16-96 Created
  12. Notes:
  13. --*/
  14. #include <precomp.h>
  15. #include "ioctl.h"
  16. #define _FILENUMBER 'TCOI'
  17. #if !BINARY_COMPATIBLE
  18. NTSTATUS
  19. AtmArpHandleIoctlRequest(
  20. IN PIRP pIrp,
  21. IN PIO_STACK_LOCATION pIrpSp
  22. )
  23. /*++
  24. Routine Description:
  25. Arguments:
  26. Return Value:
  27. --*/
  28. {
  29. NTSTATUS Status = STATUS_SUCCESS;
  30. PUCHAR pBuf;
  31. UINT BufLen;
  32. // PINTF pIntF = NULL;
  33. pIrp->IoStatus.Information = 0;
  34. pBuf = pIrp->AssociatedIrp.SystemBuffer;
  35. BufLen = pIrpSp->Parameters.DeviceIoControl.InputBufferLength;
  36. AADEBUGP(AAD_INFO,
  37. ("AtmArpHandleIoctlRequest: Code = 0x%lx\n",
  38. pIrpSp->Parameters.DeviceIoControl.IoControlCode));
  39. return Status;
  40. }
  41. #endif // !BINARY_COMPATIBLE