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.

50 lines
975 B

  1. /*++
  2. Copyright (c) 1994 Microsoft Corporation
  3. All rights reserved.
  4. Module Name:
  5. precomp.h
  6. Abstract:
  7. Precompiled header file
  8. Author:
  9. Mikael Horal 17-Oct-1995
  10. Revision History:
  11. --*/
  12. #include <nt.h>
  13. #include <ntrtl.h>
  14. #include <nturtl.h>
  15. #include <objbase.h>
  16. #define USE_SP_ALTPLATFORM_INFO_V1 0
  17. #include <setupapi.h>
  18. #include <shellapi.h>
  19. #include <winspool.h>
  20. #include "splsetup.h"
  21. #include <stdio.h>
  22. #include "tchar.h"
  23. #include "strsafe.h"
  24. #include <comp.h>
  25. #define COUNTOF(x) sizeof(x)/sizeof(*x)
  26. #if defined(_MIPS_)
  27. #define LOCAL_ENVIRONMENT L"Windows NT R4000"
  28. #elif defined(_ALPHA_)
  29. #define LOCAL_ENVIRONMENT L"Windows NT Alpha_AXP"
  30. #elif defined(_PPC_)
  31. #define LOCAL_ENVIRONMENT L"Windows NT PowerPC"
  32. #elif defined(_IA64_)
  33. #define LOCAL_ENVIRONMENT L"Windows IA64"
  34. #elif defined(_AXP64_)
  35. #define LOCAL_ENVIRONMENT L"Windows Alpha_AXP64"
  36. #else
  37. #define LOCAL_ENVIRONMENT L"Windows NT x86"
  38. #endif