/* * A Z-Machine * Copyright (C) 2000 Andrew Hunter * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* * Resource definitions */ #ifndef __ZOOMRES_H #define __ZOOMRES_H #define ID_ICON 100 #define ID_SMICON 101 #define ID_MENU 200 #define IDM_EXIT 300 #define IDM_GAME 302 #define IDM_SCREEN 303 #define IDM_LAYOUT 304 #define IDM_COLOURS 305 #define IDM_INTERPRETER 306 #define IDM_SAVEOPTS 307 #define IDM_ABOUT 308 #define IDM_FONTS 350 #define ID_ABOUT 400 #define ID_GAME 401 #define ID_LAYOUT 402 #define ID_COLOURS 403 #define ID_INTERPRETER 404 #define IDC_OK 500 #define IDC_CANCEL 501 #define IDC_INBASE 510 #define IDC_SERIAL 511 #define IDC_TITLE 512 #define IDC_LOCALFONTS 513 #define IDC_LOCALINTERP 514 #define IDC_LOCALCOLS 515 #define IDC_LOCALLAYOUT 516 #endif