diff src/w32term.c @ 64661:75130ff74ad2

(my_show_window, my_set_window_pos, my_set_focus, my_set_foreground_window, my_destroy_window): Make static.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 28 Jul 2005 09:45:10 +0000
parents a8fa7c632ee4
children a0d1312ede66 890cc78a5a24
line wrap: on
line diff
--- a/src/w32term.c	Thu Jul 28 08:29:54 2005 +0000
+++ b/src/w32term.c	Thu Jul 28 09:45:10 2005 +0000
@@ -272,6 +272,11 @@
 static void x_draw_bar_cursor P_ ((struct window *, struct glyph_row *, int,
 				   enum text_cursor_kinds));
 static void w32_clip_to_row P_ ((struct window *, struct glyph_row *, int, HDC));
+static BOOL my_show_window P_ ((struct frame *, HWND, int));
+static void my_set_window_pos P_ ((HWND, HWND, int, int, int, int, UINT));
+static void my_set_focus P_ ((struct frame *, HWND));
+static void my_set_foreground_window P_ ((HWND));
+static void my_destroy_window P_ ((struct frame *, HWND));
 
 static Lisp_Object Qvendor_specific_keysyms;
 
@@ -3632,7 +3637,7 @@
 
 /*#define ATTACH_THREADS*/
 
-BOOL
+static BOOL
 my_show_window (FRAME_PTR f, HWND hwnd, int how)
 {
 #ifndef ATTACH_THREADS
@@ -3643,7 +3648,7 @@
 #endif
 }
 
-void
+static void
 my_set_window_pos (HWND hwnd, HWND hwndAfter,
 		   int x, int y, int cx, int cy, UINT flags)
 {
@@ -3661,7 +3666,7 @@
 #endif
 }
 
-void
+static void
 my_set_focus (f, hwnd)
      struct frame * f;
      HWND hwnd;
@@ -3670,14 +3675,15 @@
 	       (WPARAM) hwnd, 0);
 }
 
-void
+static void
 my_set_foreground_window (hwnd)
      HWND hwnd;
 {
   SendMessage (hwnd, WM_EMACS_SETFOREGROUND, (WPARAM) hwnd, 0);
 }
 
-void
+
+static void
 my_destroy_window (f, hwnd)
      struct frame * f;
      HWND hwnd;