Bug fixes, now using RWops instead of File pointers.
This commit is contained in:
parent
987edb15b3
commit
67ddc464bd
3 changed files with 46 additions and 26 deletions
|
@ -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);
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue