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.

66 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 statically linked library that is shared by
  7. both the Configuration Manager client DLL and User-Mode Plug and Play
  8. manager server DLL
  9. Author:
  10. Jim Cavalaris (jamesca) 03-01-2001
  11. Environment:
  12. User-mode only.
  13. Revision History:
  14. 01-March-2001 jamesca
  15. Creation and initial implementation.
  16. --*/
  17. #ifndef _PRECOMP_H_
  18. #define _PRECOMP_H_
  19. //
  20. // NT Header Files
  21. //
  22. #include <nt.h>
  23. #include <ntrtl.h>
  24. #include <nturtl.h>
  25. //
  26. // Win32 Public Header Files
  27. //
  28. #include <windows.h>
  29. #include <regstr.h>
  30. //
  31. // CRT Header Files
  32. //
  33. #include <stdlib.h>
  34. //
  35. // RPC Header Files
  36. //
  37. #include <ntrpcp.h> // needed for rpcasync.h
  38. #include <rpcasync.h> // I_RpcExceptionFilter
  39. //
  40. // Private Header Files
  41. //
  42. #include "pnp.h" // midl generated, rpc interfaces
  43. #include "cfgmgrp.h" // private shared header, needs handle_t so must follow pnp.h
  44. #include "ppmacros.h" // private macros / debug header
  45. #endif // _PRECOMP_H_