File: Declspec.hpp

package info (click to toggle)
openlayer 2.1-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,368 kB
  • ctags: 2,295
  • sloc: ansic: 10,432; cpp: 9,890; xml: 109; makefile: 89; sh: 36
file content (17 lines) | stat: -rw-r--r-- 456 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef OL_DECLSPEC_HPP
#define OL_DECLSPEC_HPP

#if defined (_WIN32) && defined (OL_LIB_BUILD) && defined (OL_SHARED)
#define OL_LIB_DECLSPEC __declspec(dllexport)
#define OL_EXT_DECLSPEC __declspec(dllexport)
#elif defined (_WIN32) && defined (OL_SHARED)
#define OL_LIB_DECLSPEC __declspec(dllimport)
#define OL_EXT_DECLSPEC __declspec(dllimport)
#else
#define OL_LIB_DECLSPEC
#define OL_EXT_DECLSPEC
#endif


#endif // OL_DECLSPEC_HPP