00001 /* 00002 Cabal - cabal_defs 00003 Short description 00004 00005 $Id: cabal_defs.h,v 1.1 2004/03/26 12:03:02 jonnymind Exp $ 00006 --------------------------------------------- 00007 Begin : ven mar 26 2004 $TIME$ 00008 Author : Giancarlo Niccolai <gc@niccolai.ws>, (C) 2004 00009 00010 Last modified because: 00011 00012 */ 00013 00014 /************************************************************************** 00015 * This program is free software; you can redistribute it and/or modify * 00016 * it under the terms of the GNU Library General Public License as * 00017 * published by the Free Software Foundation; either version 2.1 of the * 00018 * License, or (at your option) any later version. * 00019 ***************************************************************************/ 00020 00021 #ifndef CABAL_DEFS_H 00022 #define CABAL_DEFS_H 00023 00024 #define CABAL_PRIORITIES 4 00025 00027 #define CABAL_PACKET_SIZE 1420 00028 00030 typedef long int MSECS; 00031 00033 #define CABAL_DAY_LENGTH 86400000L 00034 00035 namespace Cabal { 00036 00037 typedef enum { 00038 realtime = 0, 00039 high_prio = 1, 00040 medium_prio = 2, 00041 low_prio = 3 00042 } Priority; 00043 00044 } 00045 00046 #endif 00047 00048 /* end of cabal_defs */