]> Creatis software - creaRigidRegistration.git/blob - lib/template_lib/creaSystem.h.in
d91ccee432e062549a17c6ff7032cb793812a558
[creaRigidRegistration.git] / lib / template_lib / creaSystem.h.in
1
2 #ifndef _$PROJECT_NAME$SYSTEM_H_
3 #define _$PROJECT_NAME$SYSTEM_H_
4
5
6 // Windoze related troubles (as usual)
7
8 //-----------------------------------------------------------------------------
9
10 #if defined(_WIN32)
11   #ifdef $PROJECT_NAME$_EXPORT_SYMBOLS
12     #define $PROJECT_NAME$_EXPORT __declspec( dllexport )
13 #else
14     #define $PROJECT_NAME$_EXPORT __declspec( dllimport )
15   #endif
16   #define $PROJECT_NAME$_CDECL __cdecl
17 #else
18   #define $PROJECT_NAME$_EXPORT
19   #define $PROJECT_NAME$_CDECL
20 #endif // defined(_WIN32)
21
22 #ifdef __BORLANDC__
23   #include <mem.h>
24 #endif
25
26 #endif