00001 #ifndef ENV_CONFIG_H
00002 #define ENV_CONFIG_H
00003
00004 #include <vrs/config.h>
00005
00006 #ifdef WIN32
00007
00008
00009 # ifdef VRS_ENVIRONMENT_EXPORTS
00010 # define VRS_ENV_API __declspec(dllexport)
00011 # else // ENV_EXPORTS
00012 # define VRS_ENV_API __declspec(dllimport)
00013 # endif // ENV_EXPORTS
00014
00015
00016 # ifndef VRS_ENVIRONMENT_EXPORTS
00017 # ifdef NDEBUG
00018 # pragma comment(lib, "vrs_environment.lib")
00019 # else // NDEBUG
00020 # pragma comment(lib, "vrs_environment_debug.lib")
00021 # endif // NDEBUG
00022 # endif // VRS_ENVIRONMENT_EXPORTS
00023
00024 #else // WIN32
00025
00026 # define VRS_ENV_API
00027
00028 #endif // WIN32
00029
00030 #endif // ENV_CONFIG_H
00031