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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
/*
*
* Copyright (c) 1998-9
* Dr John Maddock
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation. Dr John Maddock makes no representations
* about the suitability of this software for any purpose.
* It is provided "as is" without express or implied warranty.
*
*/
/*
* FILE re_lib.h
* VERSION 2.12
* Automatic library file inclusion.
*/
#ifndef RE_LIB_H
#define RE_LIB_H
#if defined(_MSC_VER) && !defined(RE_BUILD_DLL)
#ifdef _DLL
#ifdef _DEBUG
#pragma comment(lib, "mre200dl.lib")
#else // DEBUG
#pragma comment(lib, "mre200l.lib")
#endif // _DEBUG
#else // _DLL
#ifdef _MT
#ifdef _DEBUG
#pragma comment(lib, "mre200dm.lib")
#else //_DEBUG
#pragma comment(lib, "mre200m.lib")
#endif //_DEBUG
#else //_MT
#ifdef _DEBUG
#pragma comment(lib, "mre200d.lib")
#else //_DEBUG
#pragma comment(lib, "mre200.lib")
#endif //_DEBUG
#endif //_MT
#endif //_DLL
#endif //_MSC_VER
#if defined(__BORLANDC__) && !defined(RE_BUILD_DLL)
#if (__BORLANDC__ > 0x520) && !defined(_NO_VCL)
#define JM_USE_VCL
#endif
#if __BORLANDC__ <= 0x520
#ifdef JM_USE_VCL
#ifdef _RTLDLL
#pragma comment(lib, "b2re200lv.lib")
#else
#pragma comment(lib, "b2re200v.lib")
#endif
#else // VCL
#ifdef _RTLDLL
#ifdef __MT__
#pragma comment(lib, "b2re200lm.lib")
#else // __MT__
#pragma comment(lib, "b2re200l.lib")
#endif // __MT__
#else //_RTLDLL
#ifdef __MT__
#pragma comment(lib, "b2re200m.lib")
#else // __MT__
#pragma comment(lib, "b2re200.lib")
#endif // __MT__
#endif // _RTLDLL
#endif // VCL
#elif __BORLANDC__ <= 0x530
#ifdef JM_USE_VCL
#ifdef _RTLDLL
#pragma comment(lib, "b3re200lv.lib")
#else
#pragma comment(lib, "b3re200v.lib")
#endif
#else // VCL
#ifdef _RTLDLL
#ifdef __MT__
#pragma comment(lib, "b3re200lm.lib")
#else // __MT__
#pragma comment(lib, "b3re200l.lib")
#endif // __MT__
#else //_RTLDLL
#ifdef __MT__
#pragma comment(lib, "b3re200m.lib")
#else // __MT__
#pragma comment(lib, "b3re200.lib")
#endif // __MT__
#endif // _RTLDLL
#endif // VCL
#else // Version: 0x540
#ifdef JM_USE_VCL
#ifdef _RTLDLL
#pragma comment(lib, "b4re200lv.lib")
#else
#pragma comment(lib, "b4re200v.lib")
#endif
#else // VCL
#ifdef _RTLDLL
#ifdef __MT__
#pragma comment(lib, "b4re200lm.lib")
#else // __MT__
#pragma comment(lib, "b4re200l.lib")
#endif // __MT__
#else //_RTLDLL
#ifdef __MT__
#pragma comment(lib, "b4re200m.lib")
#else // __MT__
#pragma comment(lib, "b4re200.lib")
#endif // __MT__
#endif // _RTLDLL
#endif // VCL
#endif
#endif //__BORLANDC__
#endif // RE_LIB_H
|