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.

92 lines
1.4 KiB

  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. atalk.h
  5. Abstract:
  6. This module is the main include file for the Appletalk protocol stack.
  7. Author:
  8. Jameel Hyder (jameelh@microsoft.com)
  9. Nikhil Kamkolkar (nikhilk@microsoft.com)
  10. Revision History:
  11. 19 Jun 1992 Initial Version
  12. Notes: Tab stop: 4
  13. --*/
  14. #pragma warning(disable:4010)
  15. #ifndef _ATALK_
  16. #define _ATALK_
  17. #include <ntosp.h>
  18. #include <zwapi.h>
  19. #include <tdikrnl.h>
  20. #include <ndis.h>
  21. #define EQU =
  22. #if DBG
  23. // Turn off FASTCALL for checked builds
  24. #undef FASTCALL
  25. #define FASTCALL
  26. #define LOCAL
  27. #else
  28. // #define LOCAL static
  29. #define LOCAL
  30. #endif
  31. // Basic types for appletalk
  32. #include "fwddecl.h"
  33. #include "lists.h"
  34. #include "atktypes.h"
  35. // The exported tdi interface file.
  36. #include <atalktdi.h>
  37. // Main driver file
  38. #include "atkdrvr.h"
  39. // Now the basic stuff
  40. #include "atktimer.h"
  41. // ARAP support
  42. #include "v42bis.h"
  43. #include "arapio.h"
  44. #include "arap.h"
  45. #include "atkerror.h"
  46. #include "atkmsg.h"
  47. #include "atkmem.h"
  48. #include "atkstat.h"
  49. #include "ports.h"
  50. #include "node.h"
  51. #include "atktdi.h"
  52. #include "ddp.h"
  53. #include "aarp.h"
  54. #include "atkndis.h"
  55. #include "atkutils.h"
  56. #include "router.h"
  57. #include "atktdi.h"
  58. #include "atkinit.h"
  59. #include "atkquery.h"
  60. #include "nbp.h"
  61. #include "rtmp.h"
  62. #include "zip.h"
  63. #include "aep.h"
  64. #include "atp.h"
  65. #include "asp.h"
  66. #include "aspc.h"
  67. #include "pap.h"
  68. #include "adsp.h"
  69. #include "blkpool.h"
  70. #include "rasproto.h"
  71. #endif // _ATALK_