blob: 0272e0eab30d4fe7869dd0572375f829c40256e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// SDLButtonPressMode.h
//
#import "SDLEnum.h"
/**
* Indicates whether this is a LONG or SHORT button press
*
* @since SDL 1.0
*/
typedef SDLEnum SDLButtonPressMode SDL_SWIFT_ENUM;
/**
* A button was released, after it was pressed for a long time. Actual timing is defined by the head unit and may vary.
*/
extern SDLButtonPressMode const SDLButtonPressModeLong;
/**
* A button was released, after it was pressed for a short time. Actual timing is defined by the head unit and may vary.
*/
extern SDLButtonPressMode const SDLButtonPressModeShort;
|