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

// Copyright (c) 1997-1999 Microsoft Corporation
//#define TRACKING
// If we are building a the DLL then define the
// class as exporteded otherwise its inmported
// ============================================
#ifndef COREPOL_HEADERFILE_IS_INCLUDED
#define COREPOL_HEADERFILE_IS_INCLUDED
//#pragma message( "Including DECLSPEC.H..." )
#ifdef BUILDING_DLL
// #pragma message( "Building static library or DLL..." )
#define POLARITY __declspec( dllexport )
#else
// #pragma message( "Building Client..." )
#define POLARITY __declspec( dllimport )
#endif
#endif