/* Hey EMACS -*- linux-c -*- */ /* $Id: tie_error.c 1455 2005-05-31 18:38:03Z roms $ */ /* TiEmu - an TI emulator * * Copyright (c) 2000-2001, Thomas Corvazier, Romain Lievin * Copyright (c) 2001-2003, Romain Lievin * Copyright (c) 2003, Julien Blache * Copyright (c) 2004, Romain Liévin * Copyright (c) 2005, Romain Liévin * * 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #ifndef __MACOSX__ #include "tilibs.h" #else /* */ #include #endif /* */ #include "intl.h" #include "printl.h" #include "dboxes.h" #include "ti68k_int.h" /* This function can take 2 parameters: - an error to translate or 0 - a pure message or NULL */ int tiemu_error(int err_code, char *err_str) { int err = err_code; char s[512]; if(!err_code && !err_str) return 0; if(err_code) { /* Retrieve the error message */ err = ticable_get_error(err, s); if (err) { err = tifiles_get_error(err, s); if (err) { err = ticalc_get_error(err, s); if (err) { // next level: error for TiEmu err = ti68k_error_get(err, s); } } } } else if(err_str) { strcpy(s, err_str); } printl(2, "%s", s); msg_box(_("Error"), s); return err_code; }