39 lines
524 B
C
39 lines
524 B
C
|
#ifndef _BUSINESSGLOBAL_
|
||
|
#define _BUSINESSGLOBAL_
|
||
|
|
||
|
/*
|
||
|
#ifdef _WIN32
|
||
|
|
||
|
#ifdef OCC_LIB
|
||
|
#define OCC_DLL_API_EXPORTS __declspec(dllexport)
|
||
|
#define DLLEXPORT __declspec(dllexport)
|
||
|
#else
|
||
|
#define OCC_DLL_API_EXPORTS __declspec(dllimport)
|
||
|
#define DLLEXPORT __declspec(dllimport)
|
||
|
#endif
|
||
|
|
||
|
#else
|
||
|
|
||
|
#define OCC_DLL_API_EXPORTS
|
||
|
|
||
|
#endif
|
||
|
*/
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
|
||
|
#ifdef OCC_LIB
|
||
|
#define DLLEXPORT __declspec(dllexport)
|
||
|
#else
|
||
|
#define DLLEXPORT __declspec(dllimport)
|
||
|
#endif
|
||
|
#else
|
||
|
|
||
|
#define DLLEXPORT
|
||
|
|
||
|
#endif //_WIN32
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#endif //_BUSINESSGLOBAL_
|