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.

84 lines
1.2 KiB

  1. /*
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. afp.h
  5. Abstract:
  6. This file defines some server globals as well as include all relevant
  7. header files.
  8. Author:
  9. Jameel Hyder (microsoft!jameelh)
  10. Revision History:
  11. 25 Apr 1992 Initial Version
  12. Notes: Tab stop: 4
  13. --*/
  14. #ifndef _AFP_
  15. #define _AFP_
  16. #include <ntosp.h>
  17. #include <zwapi.h>
  18. #include <security.h>
  19. #include <ntlmsp.h>
  20. #include <string.h>
  21. #include <wcstr.h>
  22. #include <ntiologc.h>
  23. #include <tdi.h>
  24. #include <tdikrnl.h>
  25. #if DBG
  26. /* Disable FASTCALLs for checked builds */
  27. #undef FASTCALL
  28. #define FASTCALL
  29. #define LOCAL
  30. #else
  31. #define LOCAL
  32. #endif
  33. #ifdef _GLOBALS_
  34. #define GLOBAL
  35. #define EQU =
  36. #else
  37. #define GLOBAL extern
  38. #define EQU ; / ## /
  39. #endif
  40. #include <atalktdi.h>
  41. #include <afpconst.h>
  42. #include <fwddecl.h>
  43. #include <intrlckd.h>
  44. #include <macansi.h>
  45. #include <macfile.h>
  46. #include <admin.h>
  47. #include <swmr.h>
  48. #include <fileio.h>
  49. #include <server.h>
  50. #include <forks.h>
  51. #include <sda.h>
  52. #include <afpinfo.h>
  53. #include <idindex.h>
  54. #include <desktop.h>
  55. #include <atalkio.h>
  56. #include <volume.h>
  57. #include <afpmem.h>
  58. #include <errorlog.h>
  59. #include <srvmsg.h>
  60. #include <time.h>
  61. #include <lists.h>
  62. #include <filenums.h>
  63. #include <rasfmsub.h>
  64. #include <tcp.h>
  65. #endif // _AFP_