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.

76 lines
1.4 KiB

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  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. #pragma warning(push, 3)
  30. #include <setupapi.h> // setupapi.h does not compile cleanly at warning level 4.
  31. #pragma warning(pop)
  32. #include <regstr.h>
  33. #include <strsafe.h>
  34. //
  35. // Win32 Private Header Files
  36. //
  37. #include <spapip.h> // private setupapi exports
  38. //
  39. // CRT Header Files
  40. //
  41. #include <stdlib.h>
  42. #include <stddef.h>
  43. //
  44. // RPC Header Files
  45. //
  46. #include <ntrpcp.h> // RpcpBindRpc, RpcpUnbindRpc
  47. #include <rpcasync.h> // I_RpcExceptionFilter
  48. //
  49. // Private Header Files
  50. //
  51. #include "pnp.h" // midl generated, rpc interfaces
  52. #include "cfgmgrp.h" // private shared header, needs handle_t so must follow pnp.h
  53. #include "umpnplib.h" // private shared header, for routines in shared umpnplib
  54. #include "ppmacros.h" // private macros / debug header
  55. #endif // _PRECOMP_H_