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.

42 lines
820 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. precomp.hxx
  5. Abstract:
  6. Precompiled header for the MPR. Pulls in all the
  7. system headers and local headers appearing in >15 files.
  8. Author:
  9. Anirudh Sahnni (anirudhs) 05-Mar-1996
  10. Revision History:
  11. --*/
  12. #ifndef __PRECOMP_HXX
  13. #define __PRECOMP_HXX
  14. extern "C"
  15. {
  16. #include <nt.h> // for ntrtl.h
  17. #include <ntrtl.h> // for DbgPrint prototypes
  18. #include <nturtl.h> // needed for windows.h when I have nt.h
  19. #include <windows.h>
  20. #include <winnetp.h> // Internal MPR interfaces
  21. #include <mpr.h> // More internal MPR interfaces
  22. #include <npapi.h> // Network Provider interfaces
  23. }
  24. #include "mprdata.h"
  25. #include "mprdbg.h"
  26. #include "mprbase.hxx"
  27. #include "mprlock.hxx"
  28. #endif