/* * freescope - Free source browser * Copyright (C) 2001 Olivier Deme * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* * FILE: i386_linux_defs.h * * DESCRIPTION: This file defines all common definitions needed by portable * applications running under Linux on an Intel processor * */ #ifndef _DEFS_H_ #define _DEFS_H_ /************/ /* INCLUDES */ /************/ #ifdef HAVE_CONFIG_H #include #endif // HAVE_CONFIG_H #include "trace.h" /***************/ /* DEFINITIONS */ /***************/ #define ALL (Trace::GLOBAL) #define PROGRAM_VERSION "freescope v0.3.0" /*************/ /* CONSTANTS */ /*************/ char* const DB_CSCOPE_INPUT_FILES = "cscope.files"; char* const COPYRIGHT_MSG = "freescope v0.3.0, Copyright (C) 2001 Olivier Deme"; // TRACE const Trace::Flags NORMAL = 0x1; const Trace::Flags WARNING = 0x1 << 1; const Trace::Flags ERROR = 0x1 << 2; const Trace::Flags FATAL = 0x1 << 3; #define ctrl(x) (x & 037) #endif /* _DEFS_H_ */