blob: 26b07655d0d7ddde3505b14d1bfa3880560d8081 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/*-----------------------------------------------------------------
LOG
GEM - Graphics Environment for Multimedia
Export crap
Copyright (c) 1997-1999 Mark Danks. mark@danks.org
Copyright (c) Günther Geiger. geiger@epy.co.at
Copyright (c) 2001-2002 IOhannes m zmoelnig. forum::für::umläute. IEM. zmoelnig@iem.kug.ac.at
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "GEM.LICENSE.TERMS" in this distribution.
-----------------------------------------------------------------*/
#ifndef INCLUDE_GEMEXPORTDEF_H_
#define INCLUDE_GEMEXPORTDEF_H_
#ifdef _MSC_VER
/* turn of some warnings on vc-compilers */
# pragma warning( disable : 4244 )
# pragma warning( disable : 4305 )
# pragma warning( disable : 4091 )
// "switch" without "case" (just "default")
# pragma warning( disable : 4065 )
// Windows requires explicit import and exporting of functions and classes.
// While this is a pain to do sometimes, in large software development
// projects, it is very usefull.
#ifdef GEM_INTERNAL // GEM exporting things
#define GEM_EXTERN __declspec(dllexport)
#else // other's importing
#define GEM_EXTERN __declspec(dllimport)
#endif // for GEM_INTERNAL
#else // other OS's
#define GEM_EXTERN
#endif
#endif // for header file
|