CFx SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
DbExport.h
Go to the documentation of this file.
1
2// Copyright (C) 2002-2022, Open Design Alliance (the "Alliance").
3// All rights reserved.
4//
5// This software and its documentation and related materials are owned by
6// the Alliance. The software may only be incorporated into application
7// programs owned by members of the Alliance, subject to a signed
8// Membership Agreement and Supplemental Software License Agreement with the
9// Alliance. The structure and organization of this software are the valuable
10// trade secrets of the Alliance and its suppliers. The software is also
11// protected by copyright law and international treaty provisions. Application
12// programs incorporating this software must include the following statement
13// with their copyright notices:
14//
15// This application incorporates Open Design Alliance software pursuant to a license
16// agreement with Open Design Alliance.
17// Open Design Alliance Copyright (C) 2002-2022 by Open Design Alliance.
18// All rights reserved.
19//
20// By use of this software, its documentation or related materials, you
21// acknowledge and accept the above terms.
23
24
25
26
27/* DbExport.h
28
29*/
30#ifndef _DB_EXPORT_DEFINED
31#define _DB_EXPORT_DEFINED
32
33#include "OdPlatformSettings.h"
34
35#ifdef ODA_DB_EXPORTS
36 #define TOOLKIT_EXPORT OD_TOOLKIT_EXPORT
37 #define TOOLKIT_EXPORT_GLOBAL OD_DLL_EXPORT
38 #define TOOLKIT_EXPORT_STATIC OD_STATIC_EXPORT
39#else
40 #define TOOLKIT_EXPORT OD_TOOLKIT_IMPORT
41 #define TOOLKIT_EXPORT_GLOBAL OD_DLL_IMPORT
42 #define TOOLKIT_EXPORT_STATIC OD_STATIC_IMPORT
43#endif
44
45#ifdef ODA_DBLIB_EXPORTS
46#define DBLIB_EXPORT OD_TOOLKIT_EXPORT
47#else
48#define DBLIB_EXPORT OD_TOOLKIT_IMPORT
49#endif
50
51#ifdef SCENEOE_EXPORTS
52# define SCENEOE_EXPORT OD_TOOLKIT_EXPORT
53# define SCENEOE_EXPORT_GLOBAL OD_DLL_EXPORT
54# define SCENEOE_EXPORT_STATIC OD_STATIC_EXPORT
55#else
56# define SCENEOE_EXPORT OD_TOOLKIT_IMPORT
57# define SCENEOE_EXPORT_GLOBAL OD_DLL_IMPORT
58# define SCENEOE_EXPORT_STATIC OD_STATIC_IMPORT
59#endif
60
61
62#ifdef DBENT_EXPORTS
63#define DBDIM_EXPORTS
64 #define DBENT_EXPORT OD_TOOLKIT_EXPORT
65 #define DBENT_EXPORT_STATIC OD_STATIC_EXPORT
66#else
67 #define DBENT_EXPORT OD_TOOLKIT_IMPORT
68 #define DBENT_EXPORT_STATIC OD_STATIC_IMPORT
69#endif
70
71
72#define DBDIM_EXPORT DBENT_EXPORT
73
74
75#ifdef DBIO_EXPORTS
76 #define DBIO_EXPORT OD_TOOLKIT_EXPORT
77 #define DBIO_EXPORT_GLOBAL OD_DLL_EXPORT
78 #define DBIO_EXPORT_STATIC OD_STATIC_EXPORT
79#else
80 #define DBIO_EXPORT OD_TOOLKIT_IMPORT
81 #define DBIO_EXPORT_GLOBAL OD_DLL_IMPORT
82 #define DBIO_EXPORT_STATIC OD_STATIC_IMPORT
83#endif
84
85
86#define UNDERLAY_EXPORT DBENT_EXPORT
87
88
90
91#endif /* _DB_EXPORT_DEFINED */
92
93
94