Sync with trunk (r48545)
[reactos.git] / include / psdk / polarity.h
1 /* $Id$
2 *
3 * COPYRIGHT: This file is in the public domain.
4 * PROJECT: ReactOS kernel
5 * FILE:
6 * PURPOSE:
7 * PROGRAMMER: Magnus Olsen (greatlrd)
8 *
9 */
10
11 #ifndef POLARITY_HEADERFILE_IS_INCLUDED
12 #define POLARITY_HEADERFILE_IS_INCLUDED
13
14 #ifdef USE_POLARITY
15 #ifdef BUILDING_DLL
16 #define POLARITY __declspec( dllexport )
17 #else
18 #define POLARITY __declspec( dllimport )
19 #endif
20 #else
21 #define POLARITY
22 #endif
23 #endif