2013-03-17 03:49:08 +08:00
|
|
|
/*
|
2009-10-28 00:27:33 +08:00
|
|
|
* COPYRIGHT: This file is in the public domain.
|
2007-03-30 16:34:20 +08:00
|
|
|
* PROJECT: ReactOS kernel
|
2015-10-02 02:12:45 +08:00
|
|
|
* FILE: include/psdk/polarity.h
|
2007-10-20 07:21:45 +08:00
|
|
|
* PURPOSE:
|
2007-03-30 16:34:20 +08: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-20 07:21:45 +08:00
|
|
|
#else
|
2007-03-30 16:34:20 +08:00
|
|
|
#define POLARITY __declspec( dllimport )
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define POLARITY
|
|
|
|
#endif
|
|
|
|
#endif
|