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 #ifndef _cvc3__windows_h_
00023 #define _cvc3__windows_h_
00024
00025
00026
00027
00028
00029
00030
00031 #ifdef CVC_DLL_LINKAGE
00032 #ifdef CVC_DLL_EXPORT
00033 #define CVC_DLL __declspec(dllexport)
00034 #elif CVC_DLL_IMPORT
00035 #define CVC_DLL __declspec(dllimport)
00036 #else
00037 #define CVC_DLL
00038 #endif
00039
00040
00041 #else
00042 #define CVC_DLL
00043
00044 #endif
00045
00046 #ifndef _LINUX_WINDOWS_CROSS_COMPILE
00047
00048 #ifdef _MSC_VER
00049
00050
00051
00052
00053
00054
00055 #include <io.h>
00056 #define isatty _isatty
00057
00058
00059 typedef signed __int8 int8_t;
00060 typedef signed __int16 int16_t;
00061 typedef signed __int32 int32_t;
00062 typedef signed __int64 int64_t;
00063 typedef unsigned __int8 uint8_t;
00064 typedef unsigned __int16 uint16_t;
00065 typedef unsigned __int32 uint32_t;
00066 typedef unsigned __int64 uint64_t;
00067
00068
00069 #else
00070
00071
00072
00073
00074
00075 #include <stdint.h>
00076
00077 #endif
00078
00079 #else
00080
00081 #include <stdint.h>
00082 #endif
00083
00084
00085
00086 #endif