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.

39 lines
995 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1999
  6. //
  7. // File: pch.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #define WANT_WDM
  11. // 4115 - named type definition in parentheses
  12. // 4127 - conditional expression is constant
  13. // 4201 - nonstandard extension used : nameless struct/union
  14. // 4214 - nonstandard extension used : bit field types other than int
  15. // 4514 - unreferenced inline function has been removed
  16. #pragma warning( disable : 4115 4127 4201 4214 4514 )
  17. #include "ntddk.h"
  18. #include "wdmguid.h"
  19. #include "wmidata.h"
  20. #define DVRH_USE_PARPORT_ECP_ADDR 1
  21. #define DVRH_DELAY_THEORY 0
  22. #include "parallel.h"
  23. #include "debug.h"
  24. #include "parclass.h"
  25. // #pragma warning( push )
  26. #pragma warning( disable : 4200 )
  27. #include "ntddser.h"
  28. // #pragma warning( pop )
  29. #include "parlog.h"
  30. #include "stdio.h"
  31. #include "util.h"
  32. #include "funcdecl.h"