Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / API_Bilat_Image_FreeGlut / INC / envImage_FreeGlut.h
1 /**
2 * Bilat_Image_FreeGlut
3 * version : 001
4 *
5 * Cédric Bilat cedric.bilat@he-arc.ch
6 * Stähli Joaquim joaquim.stahli@he-arc.ch
7 */
8
9 //PRIVATE
10 #ifndef ENV_IMAGE_FREE_GLUT_H
11 #define ENV_IMAGE_FREE_GLUT_H
12
13 #include "dllHelper.h"
14
15
16
17 #ifdef CBI_IMAGE_FREE_GLUT_DLL // defined if API is compiled as a DLL
18
19 #ifdef CBI_IMAGE_FREE_GLUT_EXPORT // defined if we are building the API DLL (instead of using it)
20 #define CBI_IMAGE_FREE_GLUT HELPER_DLL_EXPORT
21 #else
22 #define CBI_IMAGE_FREE_GLUT HELPER_DLL_IMPORT
23 #endif // CBI_IMAGE_FREE_GLUT_EXPORT
24 #define CBI_IMAGE_FREE_GLUT_LOCAL HELPER_DLL_LOCAL
25 #else // CBI_IMAGE_FREE_GLUT_DLL is not defined: this means API is a static lib.
26 #define CBI_IMAGE_FREE_GLUT
27 #define CBI_IMAGE_FREE_GLUT_LOCAL
28 #endif
29
30 #endif