blob: 8ce97c803b6f66f704297ed60645de7430e21139 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* gamepad.c: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id$
*/
#ifndef GAMEPAD_CONFIG_H
#define GAMEPAD_CONFIG_H
class cGamepadConfig
{
public:
cGamepadConfig(void);
char device[200];
int testMode;
};
extern cGamepadConfig gamepadConfig;
#endif
|