You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
216 B
12 lines
216 B
13 years ago
|
#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
|