Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / API_Bilat_Image_JNI / INC / envImageJNI.h
1 //PRIVATE
2 #ifndef ENV_IMAGE_JNI_H
3 #define ENV_IMAGE_JNI_H
4
5 #include "dllHelper.h"
6
7 #ifdef CBI_IMAGE_JNI_DLL // defined if API is compiled as a DLL
8
9 #ifdef CBI_IMAGE_JNI_EXPORT // defined if we are building the API DLL (instead of using it)
10 #define CBI_IMAGE_JNI HELPER_DLL_EXPORT
11 #else
12 #define CBI_IMAGE_JNI HELPER_DLL_IMPORT
13 #endif
14 #define CBI_IMAGE_JNI_LOCAL HELPER_DLL_LOCAL
15 #else // using static lib
16 #define CBI_IMAGE_JNI
17 #define CBI_IMAGE_JNI_LOCAL
18 #endif
19
20 #endif