a6230f90a3
* Put local headers at the top, and fixed self-containment. * Minor cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22027 a95241bf-73f2-0310-859d-f6bbb57e9c96
25 lines
541 B
C
25 lines
541 B
C
/*
|
|
* Copyright 2004-2007, Haiku. All rights reserved.
|
|
* Distributed under the terms of the Haiku License.
|
|
*
|
|
* Authors:
|
|
* Andrew McCall, mccall@digitalparadise.co.uk
|
|
* Jérôme Duval
|
|
* Marcus Overhagen
|
|
*/
|
|
#ifndef KEYBOARD_MESSAGES_H
|
|
#define KEYBOARD_MESSAGES_H
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
const uint32 BUTTON_DEFAULTS = 'BTde';
|
|
const uint32 BUTTON_REVERT = 'BTre';
|
|
const uint32 SLIDER_REPEAT_RATE = 'SLrr';
|
|
const uint32 SLIDER_DELAY_RATE = 'SLdr';
|
|
|
|
const uint32 ERROR_DETECTED = 'ERor';
|
|
|
|
#endif // KEYBOARD_MESSAGES_H
|