00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef Fl_Export_H
00020 # define Fl_Export_H
00021
00022
00023
00024
00025
00026 # if defined(FL_DLL)
00027 # ifdef FL_LIBRARY
00028 # define FL_EXPORT __declspec(dllexport)
00029 # else
00030 # define FL_EXPORT __declspec(dllimport)
00031 # endif
00032 # elif __GNUC__ >= 4
00033 # define FL_EXPORT __attribute__ ((visibility ("default")))
00034 # else
00035 # define FL_EXPORT
00036 # endif
00037
00038 #endif
00039
00040
00041
00042