/****************************************************************************** * * * A M S E x t e n d e r * * * * by Stefan Heule * * member of boolsoft (www.boolsoft.org) * * * * Source Code * * * * File: messages.h * * * ******************************************************************************* AMS Extender - A utility for TI's 68k calculaters Copyright (C) 2006-2008 Stefan Heule 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 3 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, see . */ #ifndef MESSAGES_H #define MESSAGES_H // ----------------------------------------------------------------- // // ---------------------------[ common ]---------------------------- // // ----------------------------------------------------------------- // #define TSR_NAME "AMSExt:\x0E" #define HOOK_NAME "AMS Extender" #define HOOK_VERSION "1.0.0" // ----------------------------------------------------------------- // // --------------------------[ english ]---------------------------- // // ----------------------------------------------------------------- // #if defined(LANG_EN) #include "msg_english.h" // ----------------------------------------------------------------- // // ---------------------------[ german ]---------------------------- // // ----------------------------------------------------------------- // #elif defined(LANG_DE) #include "msg_german.h" // ----------------------------------------------------------------- // // ----------------------------[ error ]---------------------------- // // ----------------------------------------------------------------- // #else #warning No language specified! Falling back to LANG_EN! #define LANG_EN #include "msg_english.h" #endif #endif