Annotation of ADD_ver_10/configuracion.h, revision 1.1
1.1 ! rico 1: /********************************************************************/
! 2: /* configuracion.h */
! 3: /* */
! 4: /* Copyright (c) 1997-2006 Rafael Rico (rafael.rico@uah.es) */
! 5: /* */
! 6: /* This file is part of ADD version 5.10. */
! 7: /* */
! 8: /* ADD is free software; you can redistribute it and/or modify */
! 9: /* it under the terms of the GNU General Public License as */
! 10: /* published by the Free Software Foundation; either version 2 of */
! 11: /* the License, or (at your option) any later version. */
! 12: /* */
! 13: /* ADD is distributed in the hope that it will be useful, */
! 14: /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
! 15: /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
! 16: /* GNU General Public License for more details. */
! 17: /* */
! 18: /* You should have received a copy of the GNU General Public */
! 19: /* License along with ADD; if not, write to the Free Software */
! 20: /* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA */
! 21: /* 02111-1307 USA */
! 22: /* */
! 23: /* --------------------------- History --------------------------- */
! 24: /* */
! 25: /* Revision 1.2. 01/2006 */
! 26: /* Added GPL License and JavaDoc style documentation */
! 27: /* */
! 28: /* Revision 1.1. 09/2005 */
! 29: /* Initial Revision */
! 30: /* */
! 31: /********************************************************************/
! 32:
! 33: /******************************************************************************/
! 34: /* MÓDULO: configuracion.h */
! 35: /* */
! 36: /* Prototipos de funciones utilizadas en el módulo 'Configuracion.c' */
! 37: /******************************************************************************/
! 38: /* Fecha: 22 de septiembre de 2005 */
! 39: /******************************************************************************/
! 40:
! 41:
! 42: /* 45 claves que identifican los parámetros de configuración */
! 43: #define NUM_CLAVES 45
! 44:
! 45: char *claves[] = {
! 46: /* OBSERVACIONES */
! 47: /* 0 */ "CAPTURA DE CONFIGURACIÓN",
! 48: /* FICHERO DE CONFIGURACIÓN POR DEFECTO
! 49: /* 1 */ "FICHERO DE CONFIGURACIÓN",
! 50: /* FICHEROS DE BASE DE DATOS */
! 51: /* 2 */ "FICHERO DE OPERACIONES",
! 52: /* 3 */ "FICHERO DE SÍMBOLOS",
! 53: /* 4 */ "FICHERO DE CICLOS",
! 54: /* ORIGEN DE DATOS */
! 55: /* 5 */ "ORIGEN DE DATOS",
! 56: /* 6 */ "FICHERO DE DATOS",
! 57: /* 7 */ "SECUENCIA DE INSTRUCCIÓN",
! 58: /* 8 */ "RANGO",
! 59: /* 9 */ "COMIENZO",
! 60: /* 10 */ "PRIMERA",
! 61: /* 11 */ "ULTIMA",
! 62: /* EVALUAR */
! 63: /* 12 */ "RECUENTOS",
! 64: /* 13 */ "ASIGNAR CPI",
! 65: /* 14 */ "ANALIZAR DEPENDENCIAS",
! 66: /* PARÁMETROS DE ANÁLISIS DE DEPENDENCIAS */
! 67: /* 15 */ "TAMAÑO VENTANA INSTRUCCIONES",
! 68: /* 16 */ "LISTADO UBICACIONES",
! 69: /* 17 */ "DESACOPLAR TIPOS DE DEPENDENCIAS",
! 70: /* 18 */ "DEPENDENCIAS VERDADERAS",
! 71: /* 19 */ "ANTIDEPENDENCIAS",
! 72: /* 20 */ "DEPENDENCIAS DE SALIDA",
! 73: /* 21 */ "DESACOPLAR ORIGEN",
! 74: /* 22 */ "OPERANDOS EXPLÍCITOS",
! 75: /* 23 */ "OPERANDOS IMPLÍCITOS",
! 76: /* 24 */ "DESACOPLAR FUENTES DE DEPENDENCIAS",
! 77: /* 25 */ "DEPENDENCIAS DE DATOS",
! 78: /* 26 */ "DEPENDENCIAS DE DIRECCIONES",
! 79: /* 27 */ "DEPENDENCIAS DE PILA",
! 80: /* 28 */ "DEPENDENCIAS DE CÓDIGOS DE CONDICIÓN",
! 81: /* CALCULAR */
! 82: /* 29 */ "CPI PROMEDIO",
! 83: /* 30 */ "TIEMPO DE EJECUCIÓN",
! 84: /* 31 */ "ORDEN PARCIAL",
! 85: /* 32 */ "MATRIZ DE CAMINOS",
! 86: /* 33 */ "PASOS DE COMPUTACIÓN",
! 87: /* 34 */ "GRADO DE PARALELISMO",
! 88: /* 35 */ "ACOPLAMIENTO",
! 89: /* 36 */ "HISTOGRAMA PASOS",
! 90: /* CONFIGURACIÓN DEL INFORME */
! 91: /* 37 */ "VOLCAR BASES DE DATOS",
! 92: /* 38 */ "CREAR FICHERO DE CONFIGURACIÓN",
! 93: /* 39 */ "NUEVO FICHERO DE CONFIGURACIÓN",
! 94: /* 40 */ "VOLCAR VENTANAS",
! 95: /* 41 */ "FICHERO DE RESULTADOS",
! 96: /* 42 */ "NIVEL NOTIFICACIONES",
! 97: /* INTERFASE GRÁFICA */
! 98: /* 43 */ "VER INSTRUCCIÓN",
! 99: /* 44 */ "VER VENTANA"};
! 100:
! 101:
! 102: /* 10 etiquetas de las clases de los parámetros de configuración */
! 103:
! 104: char *etiquetas[] = {
! 105: /* 0 */ "PARÁMETROS DE CONFIGURACIÓN",
! 106: /* 1 */ "Observaciones",
! 107: /* 2 */ "Fichero de configuración por defecto",
! 108: /* 3 */ "Ficheros de base de datos",
! 109: /* 4 */ "Origen de datos",
! 110: /* 5 */ "Evaluar",
! 111: /* 6 */ "Parámetros de análisis de dependencias",
! 112: /* 7 */ "Calcular",
! 113: /* 8 */ "Configuración del informe",
! 114: /* 9 */ "Interfase gráfica"};
! 115:
! 116:
! 117: /* MÓDULO 'Notificaciones.c' */
! 118:
! 119: void Notificar(char *mensaje, unsigned char accion, unsigned char eco);
! 120:
! 121:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>