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.

60 lines
1.2 KiB

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1997, Microsoft Corp. All rights reserved.
  4. //
  5. // FILE
  6. //
  7. // ias.h
  8. //
  9. // SYNOPSIS
  10. //
  11. // Common header file for all IAS modules.
  12. //
  13. // MODIFICATION HISTORY
  14. //
  15. // 07/09/1997 Original version.
  16. // 11/20/1997 Added the ATL headers.
  17. // 06/16/1998 iasapi.h must be included before the VC COM support.
  18. // 08/18/1998 Added iastrace.h
  19. // 04/23/1999 Remove iasevent.h
  20. // 05/21/1999 Remove iasdebug.h
  21. //
  22. ///////////////////////////////////////////////////////////////////////////////
  23. #ifndef _IAS_H_
  24. #define _IAS_H_
  25. #if _MSC_VER >= 1000
  26. #pragma once
  27. #endif
  28. //////////
  29. // Everything should be hard-coded for UNICODE, but just in case ...
  30. //////////
  31. #ifndef UNICODE
  32. #define UNICODE
  33. #endif
  34. #ifndef _UNICODE
  35. #define _UNICODE
  36. #endif
  37. #include <iaspragma.h>
  38. #include <windows.h>
  39. #include <iasdefs.h>
  40. #include <iasapi.h>
  41. #include <iastrace.h>
  42. #include <iasuuid.h>
  43. //////////
  44. // Don't pull in C++/ATL support if IAS_LEAN_AND_MEAN is defined.
  45. //////////
  46. #ifndef IAS_LEAN_AND_MEAN
  47. #include <iasapix.h>
  48. #include <atlbase.h>
  49. extern CComModule _Module;
  50. #include <atlcom.h>
  51. #endif // !IAS_LEAN_AND_MEAN
  52. #endif // _IAS_H_