00001 /* 00002 CABAL PROTOCOL 00003 CAched BAlanced LAN 00004 00005 OS specific cabal extensions 00006 00007 $Id: cabal_os.h,v 1.5 2004/03/26 22:45:11 jonnymind Exp $ 00008 --------------------------------------------- 00009 Begin : 00010 Author : Giancarlo Niccolai 00011 00012 Last modified because: 00013 00014 */ 00015 00016 #ifndef CABAL_OS_H 00017 #define CABAL_OS_H 00018 00019 #ifdef _MSC_VER 00020 #pragma warning ( disable : 4786 ) 00021 #endif 00022 00023 #include <string> 00024 00025 #ifdef HAVE_CONFIG_H 00026 #include <config.h> 00027 #endif 00028 00029 #if defined( __WIN32__ ) || defined( WIN32 ) 00030 #include <cabal_os_wsa.h> 00031 #else 00032 #include <cabal_os_bsd.h> 00033 #endif 00034 00035 #endif 00036 00037 /* End of cabal_os.h */