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.

68 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 Configuration 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. //
  25. // Win32 Public Header Files
  26. //
  27. #include <windows.h>
  28. #include <cfgmgr32.h>
  29. #include <dbt.h>
  30. #include <regstr.h>
  31. //
  32. // CRT Header Files
  33. //
  34. #include <stdlib.h>
  35. #include <stddef.h>
  36. //
  37. // RPC Header Files
  38. //
  39. #include <ntrpcp.h> // RpcpBindRpc, RpcpUnbindRpc
  40. #include <rpcasync.h> // I_RpcExceptionFilter
  41. //
  42. // Private Header Files
  43. //
  44. #include "pnp.h" // midl generated, rpc interfaces
  45. #include "cfgmgrp.h" // private shared header, needs handle_t so must follow pnp.h
  46. #include "umpnplib.h" // private shared header, for routines in shared umpnplib
  47. #include "ppmacros.h" // private macros / debug header
  48. #endif // _PRECOMP_H_