mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 12:30:42 +00:00
ac7767986a
git-svn-id: https://svn.eduke32.com/eduke32@1652 1a8010ca-5511-0410-912e-c29ae57300e0
47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
//-------------------------------------------------------------------------
|
|
/*
|
|
Copyright (C) 2010 EDuke32 developers and contributors
|
|
|
|
This file is part of EDuke32.
|
|
|
|
EDuke32 is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License version 2
|
|
as published by the Free Software Foundation.
|
|
|
|
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 ids
|
|
#define WIN_STARTWIN 1000
|
|
#define WIN_STARTWINPAGE_CONFIG 2000
|
|
#define WIN_STARTWIN_BITMAP 100 // banner bitmap
|
|
#define WIN_STARTWIN_TABCTL 101
|
|
#define WIN_STARTWIN_CANCEL IDCANCEL
|
|
#define WIN_STARTWIN_START IDOK
|
|
|
|
#define WIN_STARTWIN_MESSAGES 104 // output list box
|
|
|
|
#define RSRC_ICON 100
|
|
#define RSRC_BMP 200
|
|
|
|
// config page
|
|
#define IDCFULLSCREEN 100
|
|
#define IDCVMODE 101
|
|
#define IDCSOUNDDRV 102
|
|
#define IDCMIDIDEV 103
|
|
#define IDCCDADEV 104
|
|
#define IDCALWAYSSHOW 105
|
|
#define IDCDATA 106
|
|
#define IDCGAMEDIR 107
|
|
#define IDCPOLYMER 108
|
|
#define IDCAUTOLOAD 109
|
|
#define IDCINPUT 110
|