(svn r2725) Move MyShowCursor() back into win32.c, it fits better there
authortron
Wed, 27 Jul 2005 19:22:38 +0000
changeset 2207 40c928fbde8a
parent 2206 d266ec10c72e
child 2208 ed38ba85b7e1
(svn r2725) Move MyShowCursor() back into win32.c, it fits better there
video/win32_v.c
video/win32_v.h
win32.c
win32.h
--- a/video/win32_v.c	Wed Jul 27 10:11:45 2005 +0000
+++ b/video/win32_v.c	Wed Jul 27 19:22:38 2005 +0000
@@ -7,6 +7,7 @@
 #include "../macros.h"
 #include "../network.h"
 #include "../variables.h"
+#include "../win32.h"
 #include "../window.h"
 #include "win32_v.h"
 #include <windows.h>
@@ -65,17 +66,6 @@
 	SetDIBColorTable(dc, start, count, rgb);
 }
 
-bool MyShowCursor(bool show)
-{
-	if (_wnd.cursor_visible == show)
-		return show;
-
-	_wnd.cursor_visible = show;
-	ShowCursor(show);
-
-	return !show;
-}
-
 typedef struct {
 	byte vk_from;
 	byte vk_count;
--- a/video/win32_v.h	Wed Jul 27 10:11:45 2005 +0000
+++ b/video/win32_v.h	Wed Jul 27 19:22:38 2005 +0000
@@ -5,8 +5,6 @@
 
 #include "../hal.h"
 
-bool MyShowCursor(bool show);
-
 extern const HalVideoDriver _win32_video_driver;
 
 #endif
--- a/win32.c	Wed Jul 27 10:11:45 2005 +0000
+++ b/win32.c	Wed Jul 27 19:22:38 2005 +0000
@@ -40,6 +40,17 @@
 #endif
 
 
+bool MyShowCursor(bool show)
+{
+	if (_wnd.cursor_visible == show) return show;
+
+	_wnd.cursor_visible = show;
+	ShowCursor(show);
+
+	return !show;
+}
+
+
 // Helper function needed by dynamically loading SDL
 bool LoadLibraryList(Function proc[], const char* dll)
 {
--- a/win32.h	Wed Jul 27 10:11:45 2005 +0000
+++ b/win32.h	Wed Jul 27 19:22:38 2005 +0000
@@ -3,6 +3,8 @@
 #ifndef WIN32_H
 #define WIN32_H
 
+bool MyShowCursor(bool show);
+
 typedef void (*Function)(int);
 bool LoadLibraryList(Function proc[], const char* dll);