2013-03-16 19:49:08 +00:00
|
|
|
/*
|
2009-10-27 16:27:33 +00:00
|
|
|
* COPYRIGHT: This file is in the public domain.
|
2007-03-30 08:34:20 +00:00
|
|
|
* PROJECT: ReactOS kernel
|
2015-10-01 18:12:45 +00:00
|
|
|
* FILE: include/psdk/polarity.h
|
2007-10-19 23:21:45 +00:00
|
|
|
* PURPOSE:
|
2007-03-30 08:34:20 +00:00
|
|
|
* PROGRAMMER: Magnus Olsen (greatlrd)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef POLARITY_HEADERFILE_IS_INCLUDED
|
|
|
|
#define POLARITY_HEADERFILE_IS_INCLUDED
|
|
|
|
|
|
|
|
#ifdef USE_POLARITY
|
|
|
|
#ifdef BUILDING_DLL
|
|
|
|
#define POLARITY __declspec( dllexport )
|
2007-10-19 23:21:45 +00:00
|
|
|
#else
|
2007-03-30 08:34:20 +00:00
|
|
|
#define POLARITY __declspec( dllimport )
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define POLARITY
|
|
|
|
#endif
|
|
|
|
#endif
|