mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
c501d8112c
svn path=/branches/aicom-network-fixes/; revision=34994
23 lines
518 B
C
23 lines
518 B
C
/* $Id$
|
|
*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE:
|
|
* PURPOSE:
|
|
* PROGRAMMER: Magnus Olsen (greatlrd)
|
|
*
|
|
*/
|
|
|
|
#ifndef POLARITY_HEADERFILE_IS_INCLUDED
|
|
#define POLARITY_HEADERFILE_IS_INCLUDED
|
|
|
|
#ifdef USE_POLARITY
|
|
#ifdef BUILDING_DLL
|
|
#define POLARITY __declspec( dllexport )
|
|
#else
|
|
#define POLARITY __declspec( dllimport )
|
|
#endif
|
|
#else
|
|
#define POLARITY
|
|
#endif
|
|
#endif
|