Added CC_STATIC support for 3d, all these commits will be squashed and renamed, structured and signed at the end

Signed-off-by: martell <martellmalone@gmail.com>
This commit is contained in:
martell 2014-09-20 00:13:55 +01:00
parent 1a7ecbe427
commit d420ae39e2
1 changed files with 8 additions and 5 deletions

View File

@ -6,13 +6,16 @@
#include <string.h>
#endif
#if defined(_USE3DDLL)
#define CC_3D_DLL __declspec(dllexport)
#else /* use a DLL library */
#define CC_3D_DLL __declspec(dllimport)
#if defined(CC_STATIC)
#define CC_3D_DLL
#else
#if defined(_USE3DDLL)
#define CC_3D_DLL __declspec(dllexport)
#else /* use a DLL library */
#define CC_3D_DLL __declspec(dllimport)
#endif
#endif
/* Define NULL pointer value */
#ifndef NULL
#ifdef __cplusplus