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.

51 lines
1004 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. kex86.c
  5. Abstract:
  6. This module includes all of the platform-specific "C" source modules
  7. required to build the kernel for x86.
  8. The goal is to present to the compiler all of the kernel source as a
  9. a single module, so that it (the compiler) can make more aggressive
  10. decisions about inlining, const table lookup, etc.
  11. Author:
  12. Forrest Foltz (forrestf) 19-Oct-2001
  13. Environment:
  14. Kernel mode only.
  15. Revision History:
  16. --*/
  17. #include "ki.h"
  18. #include "..\ke.c"
  19. #include "abiosc.c"
  20. #include "allproc.c"
  21. #include "apcuser.c"
  22. #include "biosc.c"
  23. #include "callback.c"
  24. #include "exceptn.c"
  25. #include "flush.c"
  26. #include "flushtb.c"
  27. #include "gdtsup.c"
  28. #include "intobj.c"
  29. #include "iopm.c"
  30. #include "i386init.c"
  31. #include "largepag.c"
  32. #include "ldtsup.c"
  33. #include "misc.c"
  34. #include "pat.c"
  35. #include "thredini.c"
  36. #include "trapc.c"
  37. #include "vdm.c"
  38. #include "vdmint21.c"