duckstation

duckstation, but archived from the revision just before upstream changed it to a proprietary software project, this version is the libre one
git clone https://git.neptards.moe/u3shit/duckstation.git
Log | Files | Refs | README | LICENSE

export.hpp (380B)


      1 #ifndef C4_EXPORT_HPP_
      2 #define C4_EXPORT_HPP_
      3 
      4 #ifdef _WIN32
      5     #ifdef C4CORE_SHARED
      6         #ifdef C4CORE_EXPORTS
      7             #define C4CORE_EXPORT __declspec(dllexport)
      8         #else
      9             #define C4CORE_EXPORT __declspec(dllimport)
     10         #endif
     11     #else
     12         #define C4CORE_EXPORT
     13     #endif
     14 #else
     15     #define C4CORE_EXPORT
     16 #endif
     17 
     18 #endif /* C4CORE_EXPORT_HPP_ */