ReactOS 0.4.15-dev-7924-g5949c20
polarity.h
Go to the documentation of this file.
1/*
2 * COPYRIGHT: This file is in the public domain.
3 * PROJECT: ReactOS kernel
4 * FILE: include/psdk/polarity.h
5 * PURPOSE:
6 * PROGRAMMER: Magnus Olsen (greatlrd)
7 *
8 */
9
10#ifndef POLARITY_HEADERFILE_IS_INCLUDED
11 #define POLARITY_HEADERFILE_IS_INCLUDED
12
13 #ifdef USE_POLARITY
14 #ifdef BUILDING_DLL
15 #define POLARITY __declspec( dllexport )
16 #else
17 #define POLARITY __declspec( dllimport )
18 #endif
19 #else
20 #define POLARITY
21 #endif
22#endif