diff options
Diffstat (limited to 'Src/Wasabi/bfc/common.h')
-rw-r--r-- | Src/Wasabi/bfc/common.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Src/Wasabi/bfc/common.h b/Src/Wasabi/bfc/common.h new file mode 100644 index 00000000..305241b8 --- /dev/null +++ b/Src/Wasabi/bfc/common.h @@ -0,0 +1,23 @@ +#ifndef _COMMON_H +#define _COMMON_H + +#ifdef WIN32 +// disable "dll-interface to be used by clients of class" warning message. +#pragma warning(disable: 4251) +#endif /* WIN32 */ + +#ifdef COMEXP +#undef COMEXP +#endif +#define COMEXP + + +#ifndef __cplusplus +#define EXTC extern +#else +#define EXTC extern "C" +#endif + +#include <bfc/wasabi_std.h> + +#endif /* _COMMON_H */ |