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
752 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. cubdd.h
  5. Abstract:
  6. All CUB-DD related defines are here.
  7. Revision History:
  8. Who When What
  9. -------- -------- ----------------------------------------------
  10. arvindm 09-16-96 Created
  11. Notes:
  12. --*/
  13. #ifndef _ATMARPC__CUBDD_H
  14. #define _ATMARPC__CUBDD_H
  15. #ifdef CUBDD
  16. //
  17. // Request to resolve an IP address to an ATM address.
  18. //
  19. typedef struct _ATMARP_REQUEST
  20. {
  21. ULONG IpAddress;
  22. ULONG HwAddressLength;
  23. UCHAR HwAddress[20];
  24. }
  25. ATMARP_REQUEST, *PATMARP_REQUEST;
  26. //
  27. // The Address resolution IOCTL command code.
  28. //
  29. #define IOCTL_ATMARP_REQUEST 0x00000001
  30. #endif // CUBDD
  31. #endif // _ATMARPC__CUBDD_H