00001
00002
00003 #ifndef _REC_ROBOTINO_COM_C_GLOBALS_H_
00004 #define _REC_ROBOTINO_COM_C_GLOBALS_H_
00005
00006 typedef int BOOL;
00007
00008 #ifndef TRUE
00009 #define TRUE 1
00010 #endif
00011
00012 #ifndef FALSE
00013 #define FALSE 0
00014 #endif
00015
00016 #ifndef NULL
00017 #define NULL 0
00018 #endif
00019
00020 #ifdef WIN32
00021 #ifdef __cplusplus
00022 #define DLLEXPORT extern "C" __declspec(dllexport)
00023 #else
00024 #define DLLEXPORT __declspec(dllexport)
00025 #endif
00026 #else
00027 #ifdef __cplusplus
00028 #define DLLEXPORT extern "C" __attribute__ ((visibility ("default")))
00029 #else
00030 #define DLLEXPORT __attribute__ ((visibility ("default")))
00031 #endif
00032 #endif
00033
00034 #endif //_REC_ROBOTINO_COM_C_GLOBALS_H_
00035