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