Addition of VC project for touchTest.c

This commit is contained in:
jimtla 2010-06-05 01:58:56 -04:00
parent 36b60b6ffd
commit 94b3f88fb2
8 changed files with 290 additions and 14 deletions

View file

@ -41,8 +41,6 @@ extern "C" {
/* *INDENT-ON* */
#endif
typedef struct SDL_Touch SDL_Touch;
typedef struct SDL_Finger SDL_Finger;
struct SDL_Finger {
int id;
@ -55,9 +53,11 @@ struct SDL_Finger {
int pressure;
};
typedef struct SDL_Touch SDL_Touch;
typedef struct SDL_Finger SDL_Finger;
struct SDL_Touch
{
struct SDL_Touch {
/* Free the touch when it's time */
void (*FreeTouch) (SDL_Touch * touch);
@ -87,6 +87,7 @@ struct SDL_Touch
};
/* Function prototypes */
/**