reman3/Rayman_X/cpa/public/cpa_expt.h

14 lines
336 B
C

/*************** For DLL using this module ************* */
#ifndef CPA_EXPORT
#if defined(CPA_WANTS_IMPORT)
#define CPA_EXPORT __declspec(dllimport)
#elif defined(CPA_WANTS_EXPORT)
#define CPA_EXPORT __declspec(dllexport)
#else
#define CPA_EXPORT
#endif
#endif
/******************************************************* */