00001 /* Grafx2 - The Ultimate 256-color bitmap paint program 00002 00003 Copyright 2008 Yves Rizoud 00004 Copyright 2008 Adrien Destugues 00005 Copyright 1996-2001 Sunset Design (Guillaume Dorme & Karl Maritaud) 00006 00007 Grafx2 is free software; you can redistribute it and/or 00008 modify it under the terms of the GNU General Public License 00009 as published by the Free Software Foundation; version 2 00010 of the License. 00011 00012 Grafx2 is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 GNU General Public License for more details. 00016 00017 You should have received a copy of the GNU General Public License 00018 along with Grafx2; if not, see <http://www.gnu.org/licenses/> or 00019 write to the Free Software Foundation, Inc., 00020 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00021 */ 00022 #include <stdbool.h> 00023 #include <SDL.h> 00024 00025 /*** Types definitions and structs ***/ 00026 00027 typedef struct 00028 { 00029 word Numero; 00030 char Libelle[36]; 00031 char Explic1[37]; 00032 char Explic2[37]; 00033 char Explic3[37]; 00034 bool Suppr; // Raccourci facultatif 00035 word Touche; 00036 word Touche2; 00037 } S_ConfigTouche; 00038 00039 extern S_ConfigTouche ConfigTouche[NB_TOUCHES]; 00040 extern word Ordonnancement[NB_TOUCHES];
1.5.8