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.

36 lines
938 B

  1. /******************************Module*Header*******************************\
  2. * Module Name: precomp.h
  3. *
  4. * Common headers used throughout the display driver. This entire include
  5. * file will typically be pre-compiled.
  6. *
  7. * Copyright (c) 1993-1995 Microsoft Corporation
  8. \**************************************************************************/
  9. #include <stddef.h>
  10. #include <stdarg.h>
  11. #include <limits.h>
  12. #include <windef.h>
  13. #include <wingdi.h>
  14. #include <winddi.h>
  15. #include <winerror.h>
  16. #include <devioctl.h>
  17. #include <ntddvdeo.h>
  18. #include <ioaccess.h>
  19. //
  20. // Some intrinsic functions like abs() are X86 32 bits only. In order to
  21. // make these code working for Merced for now, we have to include math.h to
  22. // use abs() function there
  23. //
  24. #include <math.h>
  25. #include "lines.h"
  26. #include "driver.h"
  27. #include "hw.h"
  28. #include "debug.h"
  29. #if TARGET_BUILD <= 351
  30. #include <stdio.h>
  31. #include <windows.h>
  32. #endif