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.

66 lines
1.2 KiB

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  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. #include <strsafe.h>
  31. //
  32. // CRT Header Files
  33. //
  34. #include <stdlib.h>
  35. //
  36. // RPC Header Files
  37. //
  38. #include <ntrpcp.h> // needed for rpcasync.h
  39. #include <rpcasync.h> // I_RpcExceptionFilter
  40. //
  41. // Private Header Files
  42. //
  43. #include "pnp.h" // midl generated, rpc interfaces
  44. #include "cfgmgrp.h" // private shared header, needs handle_t so must follow pnp.h
  45. #include "ppmacros.h" // private macros / debug header
  46. #endif // _PRECOMP_H_