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 #ifndef _terimber_osinc_h_
00029 #define _terimber_osinc_h_
00030
00031 #ifdef _MSC_VER
00032 #pragma warning( disable : 4786 4355 4996 4503)
00033 #else
00034 #error Unexpected compiler...
00035 #endif
00036
00037 #ifndef STRICT
00038 #define STRICT 1
00039 #endif
00040
00041 #ifndef _WIN32_WINNT
00042 #define _WIN32_WINNT 0x0600
00043 #endif
00044
00045 #include <windows.h>
00046 #include <io.h>
00047 #include <fcntl.h>
00048 #include <sys/stat.h>
00049 #include <sys/timeb.h>
00050 #include <math.h>
00051 #include <direct.h>
00052
00053
00054 #include <new>
00055
00056 #include <objbase.h>
00057
00058 #include <assert.h>
00059
00060 #include <algorithm>
00061
00062 #include <process.h>
00063
00064 #include <stdio.h>
00065
00066 #include <wchar.h>
00067
00068 #include "osdef.h"
00069 #include "ostypes.h"
00070 #include "oserror.h"
00071 #include "ossock.h"
00072
00073 #endif // _terimber_osinc_h_