libftc
src/ftc_decl.h
Vá para a documentação deste arquivo.
00001 #ifndef TEC_FTC_DECL_H
00002 #define TEC_FTC_DECL_H
00003 
00004 #if defined(_WIN32) || defined(WIN32) || defined(_WINNT_VER)
00005 #ifdef TEC_FTC_DLL
00006 #ifdef TEC_FTC_SOURCE
00007 #define TEC_FTC_DECL __declspec(dllexport)
00008 #else
00009 #define TEC_FTC_DECL __declspec(dllimport)
00010 #endif
00011 #else
00012 #define TEC_FTC_DECL
00013 #endif
00014 #endif
00015 
00016 #ifndef TEC_FTC_DECL
00017 #define TEC_FTC_DECL
00018 #endif
00019 
00020 #endif