FreeLing  3.0
windll.h
Go to the documentation of this file.
00001 #ifndef __WINDLL_H__
00002 #define __WINDLL_H__
00003 
00004 #if defined WIN32 || defined WIN64
00005 #include "iso646.h"
00006 #ifdef FL_EXPORTS
00007 #define WINDLL __declspec(dllexport)
00008 #else
00009 #define WINDLL __declspec(dllimport)
00010 #endif
00011 
00012 #else
00013 #define WINDLL
00014 #endif
00015 
00016 #endif