summaryrefslogtreecommitdiff
path: root/Tests/ObjectLibrary/B/b.h
blob: 11b22f42768600af9fa41b42fea09008fc240490 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifdef A_DEF
# error "A_DEF must not be defined"
#endif
#ifndef B_DEF
# error "B_DEF not defined"
#endif
#if defined(_WIN32) && defined(Bexport)
# define EXPORT_B __declspec(dllexport)
#else
# define EXPORT_B
#endif