mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 19:35:47 -04:00
Initial community commit
This commit is contained in:
20
Src/Wasabi/bfc/platform/export.h
Normal file
20
Src/Wasabi/bfc/platform/export.h
Normal file
@ -0,0 +1,20 @@
|
||||
#ifndef NULLSOFT_BFC_EXPORT_H
|
||||
#define NULLSOFT_BFC_EXPORT_H
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define DLLEXPORT __declspec(dllexport)
|
||||
#elif defined(__GNUC__)
|
||||
#define DLLEXPORT __attribute__ ((visibility("default")))
|
||||
#else
|
||||
#error port me!
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define DLLIMPORT __declspec(dllimport)
|
||||
#elif defined(__GNUC__)
|
||||
#define DLLIMPORT
|
||||
#else
|
||||
#error port me!
|
||||
#endif
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user