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.

19 lines
594 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 exporteded otherwise its inmported
  5. // ============================================
  6. #ifndef COREPOL_HEADERFILE_IS_INCLUDED
  7. #define COREPOL_HEADERFILE_IS_INCLUDED
  8. //#pragma message( "Including DECLSPEC.H..." )
  9. #ifdef BUILDING_DLL
  10. // #pragma message( "Building static library or DLL..." )
  11. #define POLARITY __declspec( dllexport )
  12. #else
  13. // #pragma message( "Building Client..." )
  14. #define POLARITY __declspec( dllimport )
  15. #endif
  16. #endif