summaryrefslogtreecommitdiffstats
path: root/BeOS/dl_export.h
blob: d65d534fde6bb887680904a91c71792f1ea49fcb (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
#ifndef BEOS_DL_EXPORT_H
#define BEOS_DL_EXPORT_H

/* There are no declarations here, so no #ifdef __cplusplus...
 *
 * This is the nasty declaration decorations required by certain systems
 * (in our case, BeOS) for dynamic object loading.
 *
 * This trivial header is released under the same license as the rest of
 * Python:
 *
 * Copyright (c) 2000, BeOpen.com.
 * Copyright (c) 1995-2000, Corporation for National Research Initiatives.
 * Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
 * All rights reserved.
 * 
 * See the file "Misc/COPYRIGHT" for information on usage and
 * redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 *
 * - Chris Herborth (chrish@beoscentral.com)
 *   January 11, 1999
 */

#ifndef DL_EXPORT
#  define DL_EXPORT(RTYPE) __declspec(dllexport) RTYPE
#endif
#ifndef DL_IMPORT
#  ifdef USE_DL_EXPORT
#    define DL_IMPORT(RTYPE) __declspec(dllexport) RTYPE
#  else
#    define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE
#  endif
#endif

#endif