File tree Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -165,16 +165,16 @@ MYSQLX_ABI_END(2,0)
165
165
166
166
#if defined CONCPP_BUILD_SHARED
167
167
#define PUBLIC_API DLL_EXPORT
168
- #define INTERNAL DLL_LOCAL
168
+ #define INTERNAL_API DLL_LOCAL
169
169
#elif defined CONCPP_BUILD_STATIC
170
170
#define PUBLIC_API
171
- #define INTERNAL
171
+ #define INTERNAL_API
172
172
#elif !defined STATIC_CONCPP
173
173
#define PUBLIC_API DLL_IMPORT
174
- #define INTERNAL
174
+ #define INTERNAL_API
175
175
#else
176
176
#define PUBLIC_API
177
- #define INTERNAL
177
+ #define INTERNAL_API
178
178
#endif
179
179
180
180
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ class PUBLIC_API Column_detail
238
238
friend Result_detail;
239
239
friend RowResult;
240
240
241
- struct INTERNAL Access;
241
+ struct INTERNAL_API Access;
242
242
friend Access;
243
243
};
244
244
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ class PUBLIC_API Row_detail
58
58
{
59
59
protected:
60
60
61
- class INTERNAL Impl;
61
+ class INTERNAL_API Impl;
62
62
DLL_WARNINGS_PUSH
63
63
std::shared_ptr<Impl> m_impl;
64
64
DLL_WARNINGS_POP
Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ struct PUBLIC_API Client_detail
291
291
common::Shared_session_pool& get_session_pool ();
292
292
293
293
294
- struct INTERNAL Impl;
294
+ struct INTERNAL_API Impl;
295
295
296
296
DLL_WARNINGS_PUSH
297
297
Shared_client_impl m_impl = NULL ;
@@ -351,7 +351,7 @@ struct PUBLIC_API Session_detail
351
351
}
352
352
353
353
354
- struct INTERNAL Impl;
354
+ struct INTERNAL_API Impl;
355
355
356
356
/*
357
357
Note: Session implementation is shared with result objects because it
@@ -394,7 +394,7 @@ struct PUBLIC_API Session_detail
394
394
return *m_impl;
395
395
}
396
396
397
- INTERNAL cdk::Session& get_cdk_session ();
397
+ INTERNAL_API cdk::Session& get_cdk_session ();
398
398
399
399
void close ();
400
400
Original file line number Diff line number Diff line change @@ -78,15 +78,15 @@ class PUBLIC_API DbDoc
78
78
{
79
79
// TODO: move PUBLIC_API stuff to a detail class
80
80
81
- class INTERNAL Impl;
81
+ class INTERNAL_API Impl;
82
82
83
83
DLL_WARNINGS_PUSH
84
84
85
85
std::shared_ptr<Impl> m_impl;
86
86
87
87
DLL_WARNINGS_POP
88
88
89
- INTERNAL DbDoc (const std::shared_ptr<Impl>&);
89
+ INTERNAL_API DbDoc (const std::shared_ptr<Impl>&);
90
90
91
91
const char * get_json () const ;
92
92
@@ -517,7 +517,7 @@ class Value
517
517
friend mysqlx::string;
518
518
// /@endcond IGNORE
519
519
520
- struct INTERNAL Access;
520
+ struct INTERNAL_API Access;
521
521
friend Access;
522
522
};
523
523
Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ class Column
431
431
public:
432
432
433
433
friend RowResult;
434
- struct INTERNAL Access;
434
+ struct INTERNAL_API Access;
435
435
friend Access;
436
436
};
437
437
You can’t perform that action at this time.
0 commit comments