mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 14:20:15 +00:00
70 lines
2 KiB
C
70 lines
2 KiB
C
/*
|
|
* Joystick testing control panel applet resources and definitions
|
|
*
|
|
* Copyright 2012 Lucas Fialho Zawacki
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*
|
|
*/
|
|
|
|
#ifndef __WINE_JOYSTICKCPL__
|
|
#define __WINE_JOYSTICKCPL__
|
|
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winuser.h>
|
|
#include <commctrl.h>
|
|
|
|
/* strings */
|
|
#define IDS_CPL_NAME 1
|
|
#define IDS_CPL_INFO 2
|
|
|
|
/* dialogs */
|
|
#define IDC_STATIC -1
|
|
|
|
#define IDD_LIST 1000
|
|
#define IDD_TEST_DI 1001
|
|
#define IDD_TEST_XI 1002
|
|
|
|
#define IDC_JOYSTICKLIST 2000
|
|
#define IDC_DISABLEDLIST 2001
|
|
#define IDC_XINPUTLIST 2002
|
|
#define IDC_BUTTONDISABLE 2010
|
|
#define IDC_BUTTONENABLE 2011
|
|
#define IDC_BUTTONRESET 2012
|
|
#define IDC_BUTTONOVERRIDE 2013
|
|
|
|
#define IDC_DI_DEVICES 2100
|
|
#define IDC_DI_AXES 2101
|
|
#define IDC_DI_POVS 2102
|
|
#define IDC_DI_BUTTONS 2103
|
|
#define IDC_DI_EFFECTS 2104
|
|
|
|
#define IDC_XI_USER_0 2200
|
|
#define IDC_XI_USER_1 2201
|
|
#define IDC_XI_USER_2 2202
|
|
#define IDC_XI_USER_3 2203
|
|
#define IDC_XI_NO_USER_0 2210
|
|
#define IDC_XI_NO_USER_1 2211
|
|
#define IDC_XI_NO_USER_2 2212
|
|
#define IDC_XI_NO_USER_3 2213
|
|
#define IDC_XI_RUMBLE_0 2220
|
|
#define IDC_XI_RUMBLE_1 2221
|
|
#define IDC_XI_RUMBLE_2 2222
|
|
#define IDC_XI_RUMBLE_3 2223
|
|
|
|
#define ICO_MAIN 100
|
|
|
|
#endif
|