Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SDL_gesture.h « SDL2 « include « sdlew « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9909d9d13d1add2c7c32b85bb3180580f58547ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38

#ifndef _SDL_gesture_h
#define _SDL_gesture_h

#include "SDL_stdinc.h"
#include "SDL_error.h"
#include "SDL_video.h"

#include "SDL_touch.h"

#include "begin_code.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef Sint64 SDL_GestureID;

typedef int SDLCALL tSDL_RecordGesture(SDL_TouchID touchId);

typedef int SDLCALL tSDL_SaveAllDollarTemplates(SDL_RWops *src);

typedef int SDLCALL tSDL_SaveDollarTemplate(SDL_GestureID gestureId,SDL_RWops *src);

typedef int SDLCALL tSDL_LoadDollarTemplates(SDL_TouchID touchId, SDL_RWops *src);

extern tSDL_RecordGesture *SDL_RecordGesture;
extern tSDL_SaveAllDollarTemplates *SDL_SaveAllDollarTemplates;
extern tSDL_SaveDollarTemplate *SDL_SaveDollarTemplate;
extern tSDL_LoadDollarTemplates *SDL_LoadDollarTemplates;

#ifdef __cplusplus
}
#endif
#include "close_code.h"

#endif