Go to the documentation of this file.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
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #ifndef __JAUS_CORE_LIBRARY_DLL__H
00043 #define __JAUS_CORE_LIBRARY_DLL__H
00044
00052 #ifdef WIN32
00053 #ifdef JAUS_CORE_DLL_EXPORT
00054 #define JAUS_CORE_DLL __declspec(dllexport)
00055 #pragma warning( disable : 4251)
00056 #else
00057 #define JAUS_CORE_DLL __declspec(dllimport)
00058 #pragma warning( disable : 4251)
00059 #ifdef _DEBUG
00060 #pragma comment(lib, "libjauscore_d.lib" )
00061 #else
00062 #pragma comment(lib, "libjauscore.lib" )
00063 #endif
00064 #endif
00065 #else
00066 #define JAUS_CORE_DLL
00067 #endif
00068
00069 #endif
00070