/*********************************************************************** * * ***** *** *** * * * * * * * * *** *** * * * * * * * ***** *** *** * * A FREE Finite Elements Analysis Program in ANSI C for the UNIX OS. * * Composed and edited and copyright by * Professor Dr.-Ing. Frank Rieg, University of Bayreuth, Germany * * eMail: * frank.rieg@uni-bayreuth.de * dr.frank.rieg@t-online.de * * V10.0 December 12, 2001 * * Z88 should compile and run under any UNIX OS and Motif 2.0. * * 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, 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; see the file COPYING. If not, write to * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. ***********************************************************************/ /*********************************************************************** * wlog88h gibt Log-Datei-Meldungen aus (1 FR_INT4, 1 int) * 28.4.2003 Rieg ***********************************************************************/ /*********************************************************************** * Fuer UNIX ***********************************************************************/ #ifdef FR_UNIX #include #include /* FILE,fprintf,fflush */ #endif /*********************************************************************** * Fuer Windows 95 ***********************************************************************/ #ifdef FR_WIN95 #include #include /* FILE,fprintf,fflush */ #endif /*********************************************************************** * hier beginnt Function wlog88h ***********************************************************************/ int wlog88h(FR_INT4 i,int iatx) { extern FILE *fwlo; extern FR_INT4 LANG; switch(iatx) { case LOG_BZ88: if(LANG == 1) fprintf(fwlo,"Start Z88H Version 10.0A"); if(LANG == 2) fprintf(fwlo,"start Z88H version 10.0A"); fflush(fwlo); break; case LOG_OPENDYN: if(LANG == 1) fprintf(fwlo,"\nOeffnen der Datei Z88.DYN"); if(LANG == 2) fprintf(fwlo,"\nopening file Z88.DYN"); fflush(fwlo); break; case LOG_NODYN: if(LANG == 1) fprintf(fwlo,"\n### kann Z88.DYN nicht oeffnen ..Stop ###"); if(LANG == 2) fprintf(fwlo,"\n### cannot open Z88.DYN ..stop ###"); fflush(fwlo); break; case LOG_NOIN: if(LANG == 1) fprintf(fwlo,"\n### kann Z88H.IN nicht oeffnen ..Stop ###"); if(LANG == 2) fprintf(fwlo,"\n### cannot open Z88H.IN ..stop ###"); fflush(fwlo); break; case LOG_NOI1: if(LANG == 1) fprintf(fwlo,"\n### kann Z88I1.TXT nicht oeffnen ..Stop ###"); if(LANG == 2) fprintf(fwlo,"\n### cannot open Z88I1.TXT ..stop ###"); fflush(fwlo); break; case LOG_NOI2: if(LANG == 1) fprintf(fwlo,"\n### kann Z88I2.TXT nicht oeffnen ..Stop ###"); if(LANG == 2) fprintf(fwlo,"\n### cannot open Z88I2.TXT ..stop ###"); fflush(fwlo); break; case LOG_NOOUT: if(LANG == 1) fprintf(fwlo,"\n### kann Z88H.OUT nicht oeffnen ..Stop ###"); if(LANG == 2) fprintf(fwlo,"\n### cannot open Z88H.OUT ..stop ###"); fflush(fwlo); break; case LOG_WRONGDYN: if(LANG == 1) fprintf(fwlo,"\n### File Z88.DYN ist nicht korrekt ..Stop ###"); if(LANG == 2) fprintf(fwlo,"\n### file Z88.DYN is not correct ..stop ###"); fflush(fwlo); break; case LOG_NOMEM: if(LANG == 1)fprintf(fwlo,"\n### kann Memory nicht anlegen ..Stop ###"); if(LANG == 2)fprintf(fwlo,"\n### cannot allocate memory ..stop ###"); fflush(fwlo); break; case LOG_1STOP: if(LANG == 1) fprintf(fwlo,"\n### MAXGRA ueberschritten mit %ld ..Stop ###",i); if(LANG == 2) fprintf(fwlo,"\n### MAXGRA exceeded with %ld ..stop ###",i); fflush(fwlo); break; case LOG_OKDYN: if(LANG == 1) fprintf(fwlo,"\n File Z88.DYN gelesen, o.k."); if(LANG == 2) fprintf(fwlo,"\nfile Z88.DYN read, o.k."); fflush(fwlo); break; case LOG_Z88DONE: if(LANG == 1) fprintf(fwlo,"\nFiles geschlossen. Z88H fertig."); if(LANG == 2) fprintf(fwlo,"\nFiles closed. Z88H done."); fflush(fwlo); break; } return(0); }