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.

69 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1995-2001 Microsoft Corporation
  3. Module Name:
  4. precomp.h
  5. Abstract:
  6. Precompiled header file for the user-mode Plug and Play Manager.
  7. Author:
  8. Jim Cavalaris (jamesca) 03-01-2001
  9. Environment:
  10. User-mode only.
  11. Revision History:
  12. 01-March-2001 jamesca
  13. Creation and initial implementation.
  14. --*/
  15. #ifndef _PRECOMP_H_
  16. #define _PRECOMP_H_
  17. //
  18. // NT Header Files
  19. //
  20. #include <nt.h>
  21. #include <ntrtl.h>
  22. #include <nturtl.h>
  23. #include <ntpnpapi.h>
  24. #include <ntddpcm.h>
  25. //
  26. // Win32 Public Header Files
  27. //
  28. #include <windows.h>
  29. #include <cfgmgr32.h>
  30. #include <dbt.h>
  31. #include <regstr.h>
  32. #include <infstr.h>
  33. //
  34. // Win32 Private Header Files
  35. //
  36. #include <pnpmgr.h>
  37. #include <winuserp.h>
  38. //
  39. // CRT Header Files
  40. //
  41. #include <stdlib.h>
  42. //
  43. // Private Header Files
  44. //
  45. #include "pnp.h" // midl generated, rpc interfaces
  46. #include "cfgmgrp.h" // private shared header, needs handle_t so must follow pnp.h
  47. #include "umpnplib.h" // private shared header, for routines in shared umpnplib
  48. #include "ppmacros.h" // private macros / debug header
  49. #endif // _PRECOMP_H_