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.

62 lines
1.6 KiB

  1. /*
  2. (C) Copyright 1998
  3. All rights reserved.
  4. Portions of this software are:
  5. (C) Copyright 1995, 1999 TriplePoint, Inc. -- http://www.TriplePoint.com
  6. License to use this software is granted under the terms outlined in
  7. the TriplePoint Software Services Agreement.
  8. (C) Copyright 1992 Microsoft Corp. -- http://www.Microsoft.com
  9. License to use this software is granted under the terms outlined in
  10. the Microsoft Windows Device Driver Development Kit.
  11. @doc INTERNAL Link Link_h
  12. @module Link.h |
  13. This module defines the interface to the <t NDISLINK_OBJECT>.
  14. @head3 Contents |
  15. @index class,mfunc,func,msg,mdata,struct,enum | Link_h
  16. @end
  17. */
  18. #ifndef _LINK_H
  19. #define _LINK_H
  20. #define LINK_OBJECT_TYPE ((ULONG)'L')+\
  21. ((ULONG)'I'<<8)+\
  22. ((ULONG)'N'<<16)+\
  23. ((ULONG)'K'<<24)
  24. /*
  25. Function prototypes.
  26. */
  27. VOID LinkLineUp(
  28. IN PBCHANNEL_OBJECT pBChannel
  29. );
  30. VOID LinkLineDown(
  31. IN PBCHANNEL_OBJECT pBChannel
  32. );
  33. VOID LinkLineError(
  34. IN PBCHANNEL_OBJECT pBChannel,
  35. IN ULONG Errors
  36. );
  37. #endif // _LINK_H