1.1 --- a/include/SDL_touch.h Thu Jun 03 13:21:35 2010 -0400
1.2 +++ b/include/SDL_touch.h Sat Jun 05 01:58:56 2010 -0400
1.3 @@ -41,8 +41,6 @@
1.4 /* *INDENT-ON* */
1.5 #endif
1.6
1.7 -typedef struct SDL_Touch SDL_Touch;
1.8 -typedef struct SDL_Finger SDL_Finger;
1.9
1.10 struct SDL_Finger {
1.11 int id;
1.12 @@ -55,9 +53,11 @@
1.13 int pressure;
1.14 };
1.15
1.16 +typedef struct SDL_Touch SDL_Touch;
1.17 +typedef struct SDL_Finger SDL_Finger;
1.18
1.19 -struct SDL_Touch
1.20 -{
1.21 +
1.22 +struct SDL_Touch {
1.23
1.24 /* Free the touch when it's time */
1.25 void (*FreeTouch) (SDL_Touch * touch);
1.26 @@ -87,6 +87,7 @@
1.27 };
1.28
1.29
1.30 +
1.31 /* Function prototypes */
1.32
1.33 /**