Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
23
Src/Wasabi/bfc/common.h
Normal file
23
Src/Wasabi/bfc/common.h
Normal file
|
@ -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 */
|
Loading…
Add table
Add a link
Reference in a new issue