39 lines
809 B
C
39 lines
809 B
C
/*++
|
|
|
|
Copyright (C) 1996-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
COREPOL.H
|
|
|
|
Abstract:
|
|
|
|
declspec import/export helpers
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
//#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 COREPOL.H..." )
|
|
|
|
|
|
#ifdef USE_POLARITY
|
|
#ifdef BUILDING_DLL
|
|
// #pragma message( "Building static library or DLL..." )
|
|
#define POLARITY __declspec( dllexport )
|
|
#else
|
|
// #pragma message( "Building Provider..." )
|
|
#define POLARITY __declspec( dllimport )
|
|
#endif
|
|
#else
|
|
#define POLARITY
|
|
// #pragma message( "NO Polarity...")
|
|
#endif
|
|
#endif |