aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2005-07-28 09:45:10 +0000
committerJuanma Barranquero2005-07-28 09:45:10 +0000
commit14d050df8248a066dc2daca648942db79855dd2f (patch)
tree93019e76b1440d0c72802b9a8ba6a7b30bd6fc11 /src
parentc638055f54ac85c9c93765c17565e50f513d616d (diff)
downloademacs-14d050df8248a066dc2daca648942db79855dd2f.tar.gz
emacs-14d050df8248a066dc2daca648942db79855dd2f.zip
(my_show_window, my_set_window_pos, my_set_focus, my_set_foreground_window,
my_destroy_window): Make static.
Diffstat (limited to 'src')
-rw-r--r--src/w32term.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/w32term.c b/src/w32term.c
index b6cc61df2a5..796a341ae0c 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -272,6 +272,11 @@ static void x_draw_hollow_cursor P_ ((struct window *, struct glyph_row *));
272static void x_draw_bar_cursor P_ ((struct window *, struct glyph_row *, int, 272static void x_draw_bar_cursor P_ ((struct window *, struct glyph_row *, int,
273 enum text_cursor_kinds)); 273 enum text_cursor_kinds));
274static void w32_clip_to_row P_ ((struct window *, struct glyph_row *, int, HDC)); 274static void w32_clip_to_row P_ ((struct window *, struct glyph_row *, int, HDC));
275static BOOL my_show_window P_ ((struct frame *, HWND, int));
276static void my_set_window_pos P_ ((HWND, HWND, int, int, int, int, UINT));
277static void my_set_focus P_ ((struct frame *, HWND));
278static void my_set_foreground_window P_ ((HWND));
279static void my_destroy_window P_ ((struct frame *, HWND));
275 280
276static Lisp_Object Qvendor_specific_keysyms; 281static Lisp_Object Qvendor_specific_keysyms;
277 282
@@ -3632,7 +3637,7 @@ my_create_scrollbar (f, bar)
3632 3637
3633/*#define ATTACH_THREADS*/ 3638/*#define ATTACH_THREADS*/
3634 3639
3635BOOL 3640static BOOL
3636my_show_window (FRAME_PTR f, HWND hwnd, int how) 3641my_show_window (FRAME_PTR f, HWND hwnd, int how)
3637{ 3642{
3638#ifndef ATTACH_THREADS 3643#ifndef ATTACH_THREADS
@@ -3643,7 +3648,7 @@ my_show_window (FRAME_PTR f, HWND hwnd, int how)
3643#endif 3648#endif
3644} 3649}
3645 3650
3646void 3651static void
3647my_set_window_pos (HWND hwnd, HWND hwndAfter, 3652my_set_window_pos (HWND hwnd, HWND hwndAfter,
3648 int x, int y, int cx, int cy, UINT flags) 3653 int x, int y, int cx, int cy, UINT flags)
3649{ 3654{
@@ -3661,7 +3666,7 @@ my_set_window_pos (HWND hwnd, HWND hwndAfter,
3661#endif 3666#endif
3662} 3667}
3663 3668
3664void 3669static void
3665my_set_focus (f, hwnd) 3670my_set_focus (f, hwnd)
3666 struct frame * f; 3671 struct frame * f;
3667 HWND hwnd; 3672 HWND hwnd;
@@ -3670,14 +3675,15 @@ my_set_focus (f, hwnd)
3670 (WPARAM) hwnd, 0); 3675 (WPARAM) hwnd, 0);
3671} 3676}
3672 3677
3673void 3678static void
3674my_set_foreground_window (hwnd) 3679my_set_foreground_window (hwnd)
3675 HWND hwnd; 3680 HWND hwnd;
3676{ 3681{
3677 SendMessage (hwnd, WM_EMACS_SETFOREGROUND, (WPARAM) hwnd, 0); 3682 SendMessage (hwnd, WM_EMACS_SETFOREGROUND, (WPARAM) hwnd, 0);
3678} 3683}
3679 3684
3680void 3685
3686static void
3681my_destroy_window (f, hwnd) 3687my_destroy_window (f, hwnd)
3682 struct frame * f; 3688 struct frame * f;
3683 HWND hwnd; 3689 HWND hwnd;