blob: f735bc0f8445ceddfbff932ffa5a271e00c26f27 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _DLL_H_
#define _DLL_H_
#if BUILDING_DLL
# define DLLIMPORT __declspec (dllexport)
#else /* Not BUILDING_DLL */
# define DLLIMPORT __declspec (dllimport)
#endif /* Not BUILDING_DLL */
#endif /* _DLL_H_ */
|