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 #ifndef __CXUTILS_BASE_H
00042 #define __CXUTILS_BASE_H
00043
00044
00052 #ifdef WIN32
00053 #pragma warning(disable: 4251)
00054 #ifdef CX_UTILS_DLL_EXPORTS
00055 #define CX_UTILS_DLL __declspec(dllexport)
00056 #else
00057 #define CX_UTILS_DLL __declspec(dllimport)
00058 #ifdef _DEBUG
00059 #pragma comment( lib, "libcxutils_d.lib" )
00060 #else
00061 #pragma comment( lib, "libcxutils.lib" )
00062 #endif
00063 #endif
00064 #else
00065 #define CX_UTILS_DLL
00066 #endif
00067
00068 #ifndef _MSC_VER
00069 #define MINGW
00070 #endif
00071
00072
00079 #ifndef NULL
00080 #define NULL 0
00081 #endif
00082
00083 #include "cxutils/time.h"
00084
00085 #endif
00086
00087