00001 // ------------------------------------------------------------------------- 00002 // GblVar.h - Contains declarations of all global variables used by FEMOOP. 00003 // ------------------------------------------------------------------------- 00004 // 00005 // Global variables descriptions - "Data dictionary": 00006 // 00007 // in - pointer to input data file 00008 // pos - pointer to output file 00009 // arqinp[80] - input data file name 00010 // arqpos[80] - output data file name 00011 // pos_mark - marks a place in the output file 00012 // 00013 // ------------------------------------------------------------------------- 00014 // 00015 // $Author: joaquim $ 00016 // $Revision: 1.2 $ 00017 // $Date: 1998/02/16 20:21:11 $ 00018 // $State: Exp $ 00019 // 00020 // ------------------------------------------------------------------------- 00021 00022 #ifndef _GBLVAR_H 00023 #define _GBLVAR_H 00024 00025 #ifdef _FEMOOP_C 00026 00027 FILE *in; 00028 FILE *pos; 00029 FILE *sens; 00030 char arqinp[80]; 00031 char arqpos[80]; 00032 long int pos_mark; 00033 00034 #else 00035 00036 extern FILE *in; 00037 extern FILE *pos; 00038 extern char arqinp[80]; 00039 extern char arqpos[80]; 00040 extern long int pos_mark; 00041 00042 #endif 00043 00044 #endif