diff options
| author | Geoff Voelker | 1998-04-29 04:35:17 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1998-04-29 04:35:17 +0000 |
| commit | f3d268f90036df7d5adff7b65bdbf92391a50ea8 (patch) | |
| tree | 1c0812530c1159cf30187e946223a99d613f71ed /src/w32console.c | |
| parent | eccec691ae7e67c8c2ae18702458a8d2c0dfaae1 (diff) | |
| download | emacs-f3d268f90036df7d5adff7b65bdbf92391a50ea8.tar.gz emacs-f3d268f90036df7d5adff7b65bdbf92391a50ea8.zip | |
(initialize_w32_displayed): Use new function prototypes.
Diffstat (limited to 'src/w32console.c')
| -rw-r--r-- | src/w32console.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/w32console.c b/src/w32console.c index b26790c630c..8aec92389f2 100644 --- a/src/w32console.c +++ b/src/w32console.c | |||
| @@ -507,26 +507,26 @@ initialize_w32_display (void) | |||
| 507 | { | 507 | { |
| 508 | CONSOLE_SCREEN_BUFFER_INFO info; | 508 | CONSOLE_SCREEN_BUFFER_INFO info; |
| 509 | 509 | ||
| 510 | cursor_to_hook = (term_hook) move_cursor; | 510 | cursor_to_hook = move_cursor; |
| 511 | raw_cursor_to_hook = (term_hook) move_cursor; | 511 | raw_cursor_to_hook = move_cursor; |
| 512 | clear_to_end_hook = (term_hook) clear_to_end; | 512 | clear_to_end_hook = clear_to_end; |
| 513 | clear_frame_hook = (term_hook) clear_frame; | 513 | clear_frame_hook = clear_frame; |
| 514 | clear_end_of_line_hook = (term_hook) clear_end_of_line; | 514 | clear_end_of_line_hook = clear_end_of_line; |
| 515 | ins_del_lines_hook = (term_hook) ins_del_lines; | 515 | ins_del_lines_hook = ins_del_lines; |
| 516 | change_line_highlight_hook = (term_hook) change_line_highlight; | 516 | change_line_highlight_hook = change_line_highlight; |
| 517 | reassert_line_highlight_hook = (term_hook) reassert_line_highlight; | 517 | reassert_line_highlight_hook = reassert_line_highlight; |
| 518 | insert_glyphs_hook = (term_hook) insert_glyphs; | 518 | insert_glyphs_hook = insert_glyphs; |
| 519 | write_glyphs_hook = (term_hook) write_glyphs; | 519 | write_glyphs_hook = write_glyphs; |
| 520 | delete_glyphs_hook = (term_hook) delete_glyphs; | 520 | delete_glyphs_hook = delete_glyphs; |
| 521 | ring_bell_hook = (term_hook) w32_sys_ring_bell; | 521 | ring_bell_hook = w32_sys_ring_bell; |
| 522 | reset_terminal_modes_hook = (term_hook) reset_terminal_modes; | 522 | reset_terminal_modes_hook = reset_terminal_modes; |
| 523 | set_terminal_modes_hook = (term_hook) set_terminal_modes; | 523 | set_terminal_modes_hook = set_terminal_modes; |
| 524 | set_terminal_window_hook = (term_hook) set_terminal_window; | 524 | set_terminal_window_hook = set_terminal_window; |
| 525 | update_begin_hook = (term_hook) update_begin; | 525 | update_begin_hook = update_begin; |
| 526 | update_end_hook = (term_hook) update_end; | 526 | update_end_hook = update_end; |
| 527 | 527 | ||
| 528 | read_socket_hook = w32_console_read_socket; | 528 | read_socket_hook = w32_console_read_socket; |
| 529 | mouse_position_hook = w32_mouse_position; | 529 | mouse_position_hook = w32_console_mouse_position; |
| 530 | 530 | ||
| 531 | /* Remember original console settings. */ | 531 | /* Remember original console settings. */ |
| 532 | keyboard_handle = GetStdHandle (STD_INPUT_HANDLE); | 532 | keyboard_handle = GetStdHandle (STD_INPUT_HANDLE); |