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.

79 lines
986 B

  1. /*
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. fwddecl.h
  5. Abstract:
  6. This file defines dummy structures to avoid the circular relationships in
  7. header files.
  8. Author:
  9. Jameel Hyder (microsoft!jameelh)
  10. Nikhil Kamkolkar (microsoft!nikhilk)
  11. Revision History:
  12. 10 Mar 1993 Initial Version
  13. Notes: Tab stop: 4
  14. --*/
  15. #ifndef _FWDDECL_
  16. #define _FWDDECL_
  17. struct _PORT_DESCRIPTOR;
  18. struct _AMT_NODE;
  19. struct _ZONE;
  20. struct _ZONE_LIST;
  21. struct _DDP_ADDROBJ;
  22. struct _ATP_ADDROBJ;
  23. struct _PEND_NAME;
  24. struct _REGD_NAME;
  25. struct _BUFFER_DESC;
  26. struct _AARP_BUFFER;
  27. struct _DDP_SMBUFFER;
  28. struct _DDP_LGBUFFER;
  29. struct _TimerList;
  30. struct _RoutingTableEntry;
  31. struct _ZipCompletionInfo;
  32. struct _SEND_COMPL_INFO;
  33. struct _ActionReq;
  34. struct _BLK_HDR;
  35. struct _BLK_CHUNK;
  36. // Support for debugging
  37. typedef struct
  38. {
  39. KSPIN_LOCK SpinLock;
  40. #if DBG
  41. ULONG FileLineLock;
  42. ULONG FileLineUnlock;
  43. #endif
  44. } ATALK_SPIN_LOCK, *PATALK_SPIN_LOCK;
  45. #endif // _FWDDECL_
  46.