]> git.eshelyaron.com Git - emacs.git/commitdiff
(my_set_window_pos, my_show_window): Don't declare.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 28 Jul 2005 09:48:25 +0000 (09:48 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 28 Jul 2005 09:48:25 +0000 (09:48 +0000)
(my_create_window, my_create_tip_window): Make static.

src/ChangeLog
src/w32fns.c

index dd46874e6795e1a88f5068df880aacb5674e4f37..947a780534ed3ec3cad899082ad3b641191786e4 100644 (file)
@@ -1,3 +1,11 @@
+2005-07-28  Juanma Barranquero  <lekktu@gmail.com>
+
+       * w32fns.c (my_set_window_pos, my_show_window): Don't declare.
+       (my_create_window, my_create_tip_window): Make static.
+
+       * w32term.c (my_show_window, my_set_window_pos, my_set_focus)
+       (my_set_foreground_window, my_destroy_window): Make static.
+
 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
 
        Merge gnulib getopt implementation into Emacs.
index 4565e6a6e24696cb8cc8abb43a92c9bb77bb63a8..dc8d5998765e40fa10b1b2791a91f00c372ef0ef 100644 (file)
@@ -395,10 +395,10 @@ x_window_to_frame (dpyinfo, wdesc)
 }
 
 \f
-BOOL my_show_window P_ ((struct frame *, HWND, int));
-void my_set_window_pos P_ ((HWND, HWND, int, int, int, int, UINT));
 static Lisp_Object unwind_create_frame P_ ((Lisp_Object));
 static Lisp_Object unwind_create_tip_frame P_ ((Lisp_Object));
+static void my_create_window P_ ((struct frame *));
+static void my_create_tip_window P_ ((struct frame *));
 
 /* TODO: Native Input Method support; see x_create_im.  */
 void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
@@ -3847,7 +3847,7 @@ w32_wnd_proc (hwnd, msg, wParam, lParam)
   return 0;
 }
 
-void
+static void
 my_create_window (f)
      struct frame * f;
 {
@@ -3863,7 +3863,7 @@ my_create_window (f)
    indirectly via the Window thread, as we do not need to process Window
    messages for the tooltip.  Creating tooltips indirectly also creates
    deadlocks when tooltips are created for menu items.  */
-void
+static void
 my_create_tip_window (f)
      struct frame *f;
 {