f8f38c4c4b
removed unused definitions git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11726 a95241bf-73f2-0310-859d-f6bbb57e9c96
42 lines
596 B
C
42 lines
596 B
C
//
|
|
// kb_mouse_settings.h
|
|
//
|
|
|
|
|
|
#ifndef _KB_MOUSE_SETTINGS_H
|
|
#define _KB_MOUSE_SETTINGS_H
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
bigtime_t key_repeat_delay;
|
|
int32 key_repeat_rate;
|
|
} kb_settings;
|
|
|
|
#define kb_settings_file "Keyboard_settings"
|
|
|
|
typedef struct {
|
|
bool enabled;
|
|
int32 accel_factor;
|
|
int32 speed;
|
|
} mouse_accel;
|
|
|
|
typedef struct {
|
|
int32 type;
|
|
mouse_map map;
|
|
mouse_accel accel;
|
|
bigtime_t click_speed;
|
|
} mouse_settings;
|
|
|
|
#define mouse_settings_file "Mouse_settings"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|