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.

70 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 2000-2001 Microsoft Corporation
  3. Module Name:
  4. StdAfx.h
  5. Abstract:
  6. Precompiled header file.
  7. Author:
  8. Stefan R. Steiner [ssteiner] 02-01-2000
  9. Revision History:
  10. --*/
  11. #ifndef __H_STDAFX_
  12. #define __H_STDAFX_
  13. //
  14. // C4290: C++ Exception Specification ignored
  15. //
  16. #pragma warning(disable:4290)
  17. #pragma warning(disable:4201) // C4201: nonstandard extension used : nameless struct/union
  18. // Insert your headers here
  19. #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  20. #include <nt.h>
  21. #include <ntrtl.h>
  22. #include <nturtl.h>
  23. //#undef ASSERT
  24. //#undef _ASSERTE
  25. #include <windows.h>
  26. #include <wchar.h>
  27. #include <string.h>
  28. #include <iostream.h>
  29. #include <fstream.h>
  30. #include <stdio.h>
  31. #include <process.h>
  32. #include <stdlib.h>
  33. #include <errno.h>
  34. #include "vs_assert.hxx"
  35. #pragma warning( disable: 4127 ) // warning C4127: conditional expression is constant
  36. #include <stddef.h>
  37. #include <oleauto.h>
  38. #include <atlconv.h>
  39. #include <atlbase.h>
  40. #include "vs_inc.hxx"
  41. #include "vs_idl.hxx"
  42. #include <vswriter.h>
  43. #include <vsbackup.h>
  44. #include "bsstring.hxx"
  45. #include "wrtcommon.hxx"
  46. #endif // __H_STDAFX_