winamp/Src/Wasabi/bfc/common.h
2024-09-24 14:54:57 +02:00

24 lines
362 B
C

#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 */