Mercurial > sdl-ios-xcode
diff src/events/SDL_mouse_c.h @ 2712:c4e697245676
Fixed compile errors introduced during the merge refactoring
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 25 Aug 2008 08:50:37 +0000 |
parents | 44e49d3fa6cf |
children | 76c2fc9696ea |
line wrap: on
line diff
--- a/src/events/SDL_mouse_c.h Mon Aug 25 06:58:34 2008 +0000 +++ b/src/events/SDL_mouse_c.h Mon Aug 25 08:50:37 2008 +0000 @@ -88,14 +88,14 @@ /* Initialize the mouse subsystem */ extern int SDL_MouseInit(void); -/* Get the mouse at an index */ -extern SDL_Mouse *SDL_GetMouse(int index); - /* Assign an id to a mouse at an index */ extern int SDL_SetMouseIndexId(int id, int index); -/* Get the mouse by id */ -extern SDL_Mouse *SDL_GetMouseByID(int id); +/* Get the index of a mouse specified by id */ +extern int SDL_GetMouseIndexId(int id); + +/* Get the mouse at an index */ +extern SDL_Mouse *SDL_GetMouse(int index); /* Add a mouse, possibly reattaching at a particular index (or -1), returning the index of the mouse, or -1 if there was an error.