Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
14d050df
Commit
14d050df
authored
Jul 28, 2005
by
Juanma Barranquero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(my_show_window, my_set_window_pos, my_set_focus, my_set_foreground_window,
my_destroy_window): Make static.
parent
c638055f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
src/w32term.c
src/w32term.c
+11
-5
No files found.
src/w32term.c
View file @
14d050df
...
...
@@ -272,6 +272,11 @@ static void x_draw_hollow_cursor P_ ((struct window *, struct glyph_row *));
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 @@ my_create_scrollbar (f, bar)
/*#define ATTACH_THREADS*/
BOOL
static
BOOL
my_show_window (FRAME_PTR f, HWND hwnd, int how)
{
#ifndef ATTACH_THREADS
...
...
@@ -3643,7 +3648,7 @@ my_show_window (FRAME_PTR f, HWND hwnd, int how)
#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 @@ my_set_window_pos (HWND hwnd, HWND hwndAfter,
#endif
}
void
static
void
my_set_focus (f, hwnd)
struct frame * f;
HWND hwnd;
...
...
@@ -3670,14 +3675,15 @@ my_set_focus (f, hwnd)
(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;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment