mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 08:35:46 -04:00
Initial community commit
This commit is contained in:
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 */
|
Reference in New Issue
Block a user