reactos/include/ddk/polarity.h
Art Yerkes c501d8112c Create a branch for network fixes.
svn path=/branches/aicom-network-fixes/; revision=34994
2008-08-01 11:32:26 +00:00

24 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