Bug fixes, now using RWops instead of File pointers.

This commit is contained in:
Jim Grandpre 2010-07-16 20:48:43 -04:00
parent 987edb15b3
commit 67ddc464bd
3 changed files with 46 additions and 26 deletions

View file

@ -57,7 +57,7 @@ extern "C" {
*
*
*/
extern DECLSPEC int SDLCALL SDL_SaveAllDollarTemplates(FILE *fp);
extern DECLSPEC int SDLCALL SDL_SaveAllDollarTemplates(SDL_RWops *src);
/**
* \brief Save a currently loaded Dollar Gesture template
@ -65,7 +65,7 @@ extern "C" {
*
*/
extern DECLSPEC int
SDLCALL SDL_SaveDollarTemplate(unsigned long gestureId,FILE *fp);
SDLCALL SDL_SaveDollarTemplate(unsigned long gestureId,SDL_RWops *src);
/**
@ -73,7 +73,7 @@ extern "C" {
*
*
*/
extern DECLSPEC int SDLCALL SDL_LoadDollarTemplates(int touchId, FILE *fp);
extern DECLSPEC int SDLCALL SDL_LoadDollarTemplates(int touchId, SDL_RWops *src);