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.

43 lines
909 B

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) Microsoft Corp. All rights reserved.
  4. //
  5. // SYNOPSIS
  6. //
  7. // Common header file for all IAS modules.
  8. //
  9. ///////////////////////////////////////////////////////////////////////////////
  10. #ifndef IAS_H
  11. #define IAS_H
  12. #pragma once
  13. //////////
  14. // Everything should be hard-coded for UNICODE, but just in case ...
  15. //////////
  16. #ifndef UNICODE
  17. #define UNICODE
  18. #endif
  19. #ifndef _UNICODE
  20. #define _UNICODE
  21. #endif
  22. #include <iaspragma.h>
  23. #include <windows.h>
  24. #include <iasdefs.h>
  25. #include <iasapi.h>
  26. #include <iastrace.h>
  27. #include <iasuuid.h>
  28. //////////
  29. // Don't pull in C++/ATL support if IAS_LEAN_AND_MEAN is defined.
  30. //////////
  31. #ifndef IAS_LEAN_AND_MEAN
  32. #include <atlbase.h>
  33. extern CComModule _Module;
  34. #include <atlcom.h>
  35. #endif // !IAS_LEAN_AND_MEAN
  36. #endif // IAS_H