diff src/video/win32/SDL_win32mouse.c @ 1724:6c63fc2bd986 SDL-1.3

Proof of concept done - Win32 GDI implementation mostly complete.
author Sam Lantinga <slouken@libsdl.org>
date Thu, 06 Jul 2006 07:17:11 +0000
parents a1ebb17f9c52
children 98a3207ddde8
line wrap: on
line diff
--- a/src/video/win32/SDL_win32mouse.c	Thu Jul 06 05:53:32 2006 +0000
+++ b/src/video/win32/SDL_win32mouse.c	Thu Jul 06 07:17:11 2006 +0000
@@ -35,4 +35,12 @@
     data->mouse = SDL_AddMouse(&mouse, -1);
 }
 
+void
+WIN_DelMouse(_THIS)
+{
+    SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
+
+    SDL_DelMouse(data->mouse);
+}
+
 /* vi: set ts=4 sw=4 expandtab: */