00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #if !defined( _THREADS_1__DECLSPEC_HPP_ )
00026 #define _THREADS_1__DECLSPEC_HPP_
00027
00028 #include <cpp_util_2/h/detect_compiler.hpp>
00029
00030 #if defined( THREADS_1__DLL )
00031 #if defined( THREADS_1__PRJ )
00032 #define THREADS_1__TYPE\
00033 CPP_UTIL_2_EXPORT
00034
00035 #define THREADS_1__FUNC(ret_type)\
00036 CPP_UTIL_2_EXPORT_FUNC_SPEC(ret_type)
00037
00038 #else
00039 #define THREADS_1__TYPE\
00040 CPP_UTIL_2_IMPORT
00041
00042 #define THREADS_1__FUNC(ret_type)\
00043 CPP_UTIL_2_IMPORT_FUNC_SPEC(ret_type)
00044 #endif
00045 #else
00046 #define THREADS_1__TYPE
00047
00048 #define THREADS_1__FUNC(ret_type) ret_type
00049 #endif
00050
00051 #endif
00052