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.

26 lines
675 B

  1. // Copyright (c) 1997-1999 Microsoft Corporation
  2. //#define TRACKING
  3. // If we are building a the DLL then define the
  4. // class as exported otherwise its imported.
  5. // ============================================
  6. #ifndef COREPOL_HEADERFILE_IS_INCLUDED
  7. #define COREPOL_HEADERFILE_IS_INCLUDED
  8. //#pragma message( "Including DECLSPEC.H..." )
  9. #undef POLARITY
  10. #ifdef SHARE_SOURCE
  11. #define POLARITY
  12. #elif BUILDING_DLL
  13. //#pragma message( "Building static library or DLL..." )
  14. #define POLARITY __declspec( dllexport )
  15. #else
  16. //#pragma message( "Building Client..." )
  17. #define POLARITY __declspec( dllimport )
  18. #endif
  19. #endif COREPOL_HEADERFILE_IS_INCLUDED