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.

60 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. kei386.c
  5. Abstract:
  6. This module includes all of the platform-generic "C" source modules
  7. required to build the kernel.
  8. The goal, for platforms that use this file, is to present to the
  9. compiler most of the kernel source as a single module, so that it (the
  10. compiler) can make better decisions about inlining, const table lookup,
  11. etc.
  12. Author:
  13. Forrest Foltz (forrestf) 19-Oct-2001
  14. Environment:
  15. Kernel mode only.
  16. Revision History:
  17. --*/
  18. #include "apcobj.c"
  19. #include "apcsup.c"
  20. #include "balmgr.c"
  21. #include "config.c"
  22. #include "debug.c"
  23. #include "devquobj.c"
  24. #include "dpcobj.c"
  25. #include "dpclock.c"
  26. #include "dpcsup.c"
  27. #include "eventobj.c"
  28. #include "idsched.c"
  29. #include "interobj.c"
  30. #include "kernldat.c"
  31. #include "kevutil.c"
  32. #include "kiinit.c"
  33. #include "miscc.c"
  34. #include "mutntobj.c"
  35. #include "procobj.c"
  36. #include "profobj.c"
  37. #include "queueobj.c"
  38. #include "raisexcp.c"
  39. #include "semphobj.c"
  40. #include "thredobj.c"
  41. #include "thredsup.c"
  42. #include "timerobj.c"
  43. #include "timersup.c"
  44. #include "wait.c"
  45. #include "waitsup.c"
  46. #include "xipi.c"
  47. #include "yield.c"