GLIP-Lib
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
LibTools.hpp
Go to the documentation of this file.
1 /* ************************************************************************************************************* */
2 /* */
3 /* GLIP-LIB */
4 /* OpenGL Image Processing LIBrary */
5 /* */
6 /* Author : R. Kerviche */
7 /* LICENSE : MIT License */
8 /* Website : glip-lib.net */
9 /* */
10 /* File : OglInclude.hpp */
11 /* Original Date : December 2nd 2013 */
12 /* */
13 /* Description : Specific defines for the API structure. */
14 /* */
15 /* ************************************************************************************************************* */
16 
24 #ifndef __LIBTOOLS_INCLUDE__
25 #define __LIBTOOLS_INCLUDE__
26 
27  #ifdef _WIN32
28  #define GLIP_API __declspec(dllexport)
29  #define GLIP_API_FUNC __declspec(dllexport) extern
30  #else
31  #define GLIP_API
32  #define GLIP_API_FUNC extern
33  #endif
34 
35  #define UNUSED_PARAMETER(x) (void)(x);
36 
37 #endif
38