File:  [Repository ATC2] / ADD_ver_10 / Attic / configuracion.h
Revision 1.1: download - view: text, annotated - select for diffs
Thu Jan 19 17:16:29 2006 UTC (18 years, 8 months ago) by rico
Branches: MAIN
CVS tags: HEAD
*** empty log message ***

/********************************************************************/
/*  configuracion.h                                                 */
/*                                                                  */
/*  Copyright (c) 1997-2006 Rafael Rico      (rafael.rico@uah.es)   */
/*                                                                  */
/*  This file is part of ADD version 5.10.                          */
/*                                                                  */
/*  ADD 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.             */
/*                                                                  */
/*  ADD 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 ADD; if not, write to the Free Software      */
/*  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA        */
/*  02111-1307  USA                                                 */
/*                                                                  */
/*  --------------------------- History --------------------------- */
/*                                                                  */
/*  Revision 1.2. 01/2006                                           */
/*  Added GPL License and JavaDoc style documentation               */
/*                                                                  */
/*  Revision 1.1. 09/2005                                           */
/*  Initial Revision                                                */
/*                                                                  */
/********************************************************************/

/******************************************************************************/
/* MÓDULO: configuracion.h                                                    */
/*                                                                            */
/* Prototipos de funciones utilizadas en el módulo 'Configuracion.c'          */
/******************************************************************************/
/* Fecha: 22 de septiembre de 2005                                            */
/******************************************************************************/


/* 45 claves que identifican los parámetros de configuración */
#define NUM_CLAVES 45

char *claves[] = {
		/* OBSERVACIONES */
/*  0 */	"CAPTURA DE CONFIGURACIÓN",
		/* FICHERO DE CONFIGURACIÓN POR DEFECTO 
/*  1 */	"FICHERO DE CONFIGURACIÓN", 
		/* FICHEROS DE BASE DE DATOS */
/*  2 */	"FICHERO DE OPERACIONES", 
/*  3 */	"FICHERO DE SÍMBOLOS", 
/*  4 */	"FICHERO DE CICLOS", 
		/* ORIGEN DE DATOS */
/*  5 */	"ORIGEN DE DATOS", 
/*  6 */	"FICHERO DE DATOS", 
/*  7 */	"SECUENCIA DE INSTRUCCIÓN", 
/*  8 */	"RANGO", 
/*  9 */	"COMIENZO", 
/* 10 */	"PRIMERA", 
/* 11 */	"ULTIMA",
		/* EVALUAR */
/* 12 */	"RECUENTOS", 
/* 13 */	"ASIGNAR CPI", 
/* 14 */	"ANALIZAR DEPENDENCIAS",
		/* PARÁMETROS DE ANÁLISIS DE DEPENDENCIAS */
/* 15 */	"TAMAÑO VENTANA INSTRUCCIONES", 
/* 16 */	"LISTADO UBICACIONES", 
/* 17 */	"DESACOPLAR TIPOS DE DEPENDENCIAS", 
/* 18 */	"DEPENDENCIAS VERDADERAS", 
/* 19 */	"ANTIDEPENDENCIAS", 
/* 20 */	"DEPENDENCIAS DE SALIDA",
/* 21 */	"DESACOPLAR ORIGEN", 
/* 22 */	"OPERANDOS EXPLÍCITOS", 
/* 23 */	"OPERANDOS IMPLÍCITOS", 
/* 24 */	"DESACOPLAR FUENTES DE DEPENDENCIAS", 
/* 25 */	"DEPENDENCIAS DE DATOS", 
/* 26 */	"DEPENDENCIAS DE DIRECCIONES", 
/* 27 */	"DEPENDENCIAS DE PILA", 
/* 28 */	"DEPENDENCIAS DE CÓDIGOS DE CONDICIÓN", 
		/* CALCULAR */
/* 29 */	"CPI PROMEDIO", 
/* 30 */	"TIEMPO DE EJECUCIÓN",
/* 31 */	"ORDEN PARCIAL", 
/* 32 */	"MATRIZ DE CAMINOS",
/* 33 */	"PASOS DE COMPUTACIÓN", 
/* 34 */	"GRADO DE PARALELISMO",
/* 35 */	"ACOPLAMIENTO",
/* 36 */	"HISTOGRAMA PASOS",
		/* CONFIGURACIÓN DEL INFORME */
/* 37 */	"VOLCAR BASES DE DATOS", 
/* 38 */	"CREAR FICHERO DE CONFIGURACIÓN", 
/* 39 */	"NUEVO FICHERO DE CONFIGURACIÓN",
/* 40 */	"VOLCAR VENTANAS", 
/* 41 */	"FICHERO DE RESULTADOS", 
/* 42 */	"NIVEL NOTIFICACIONES", 
		/* INTERFASE GRÁFICA */
/* 43 */	"VER INSTRUCCIÓN", 
/* 44 */	"VER VENTANA"};


/* 10 etiquetas de las clases de los parámetros de configuración */

char *etiquetas[] = {
/*  0 */	"PARÁMETROS DE CONFIGURACIÓN", 
/*  1 */	"Observaciones", 
/*  2 */	"Fichero de configuración por defecto", 
/*  3 */	"Ficheros de base de datos", 
/*  4 */	"Origen de datos", 
/*  5 */	"Evaluar", 
/*  6 */	"Parámetros de análisis de dependencias", 
/*  7 */	"Calcular", 
/*  8 */	"Configuración del informe", 
/*  9 */	"Interfase gráfica"};


/* MÓDULO 'Notificaciones.c' */

void Notificar(char *mensaje, unsigned char accion, unsigned char eco);



FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>