FreeLing  4.0
windll.h
Go to the documentation of this file.
00001 
00002 #if defined WIN32 || defined WIN64
00003 #  pragma warning(disable : 4251)
00004 #  pragma warning(disable : 4275)
00005 #endif
00006 
00007 
00008 #ifndef __WINDLL_H__
00009 #define __WINDLL_H__
00010 
00011 
00012 #if defined WIN32 || defined WIN64
00013 #include "iso646.h"
00014 #ifdef FL_EXPORTS
00015 #  define WINDLL __declspec(dllexport)
00016 #  define EXPIMP_TEMPLATE
00017 #else
00018 #  define WINDLL __declspec(dllimport)
00019 #  define EXPIMP_TEMPLATE extern
00020 #endif
00021 
00022 #else
00023 #define WINDLL
00024 #endif
00025 
00026 #endif