diff options
| author | Andreas Schwab | 1997-11-21 15:12:34 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1997-11-21 15:12:34 +0000 |
| commit | d748a3dbdc6351ca3fc773ef54d3ec86321c94ef (patch) | |
| tree | ad542228118922eee20eab5a27e48bb02b775276 /src/keyboard.h | |
| parent | 0c60dfd7b4834041e0205b4bb45b27c7d1a7732a (diff) | |
| download | emacs-d748a3dbdc6351ca3fc773ef54d3ec86321c94ef.tar.gz emacs-d748a3dbdc6351ca3fc773ef54d3ec86321c94ef.zip | |
Add prototypes and more function declarations.
Diffstat (limited to 'src/keyboard.h')
| -rw-r--r-- | src/keyboard.h | 41 |
1 files changed, 36 insertions, 5 deletions
diff --git a/src/keyboard.h b/src/keyboard.h index 325ff4565ce..73aec908e2c 100644 --- a/src/keyboard.h +++ b/src/keyboard.h | |||
| @@ -249,11 +249,42 @@ extern Lisp_Object Qscroll_bar_movement; | |||
| 249 | /* Symbols to use for non-text mouse positions. */ | 249 | /* Symbols to use for non-text mouse positions. */ |
| 250 | extern Lisp_Object Qmode_line, Qvertical_line; | 250 | extern Lisp_Object Qmode_line, Qvertical_line; |
| 251 | 251 | ||
| 252 | extern Lisp_Object get_keymap_1 (); | 252 | /* Forward declaration for prototypes. */ |
| 253 | extern Lisp_Object Fkeymapp (); | 253 | struct input_event; |
| 254 | extern Lisp_Object reorder_modifiers (); | 254 | |
| 255 | extern Lisp_Object read_char (); | 255 | extern Lisp_Object get_keymap_1 P_ ((Lisp_Object, int, int)); |
| 256 | EXFUN (Fkeymapp, 1); | ||
| 257 | extern Lisp_Object reorder_modifiers P_ ((Lisp_Object)); | ||
| 258 | extern Lisp_Object read_char P_ ((int, int, Lisp_Object *, Lisp_Object, int *)); | ||
| 256 | /* User-supplied string to translate input characters through. */ | 259 | /* User-supplied string to translate input characters through. */ |
| 257 | extern Lisp_Object Vkeyboard_translate_table; | 260 | extern Lisp_Object Vkeyboard_translate_table; |
| 258 | 261 | ||
| 259 | extern Lisp_Object map_prompt (); | 262 | extern Lisp_Object map_prompt P_ ((Lisp_Object)); |
| 263 | |||
| 264 | extern void echo_now P_ ((void)); | ||
| 265 | extern void init_kboard P_ ((KBOARD *)); | ||
| 266 | extern void delete_kboard P_ ((KBOARD *)); | ||
| 267 | extern void single_kboard_state P_ ((void)); | ||
| 268 | extern void push_frame_kboard P_ ((struct frame *)); | ||
| 269 | extern void pop_frame_kboard P_ ((void)); | ||
| 270 | extern void record_asynch_buffer_change P_ ((void)); | ||
| 271 | extern void clear_waiting_for_input P_ ((void)); | ||
| 272 | extern SIGTYPE input_poll_signal P_ ((int)); | ||
| 273 | extern void start_polling P_ ((void)); | ||
| 274 | extern void stop_polling P_ ((void)); | ||
| 275 | extern void set_poll_suppress_count P_ ((int)); | ||
| 276 | extern void gobble_input P_ ((int)); | ||
| 277 | extern int input_polling_used P_ ((void)); | ||
| 278 | extern void clear_input_pending P_ ((void)); | ||
| 279 | extern int requeued_events_pending_p P_ ((void)); | ||
| 280 | extern void bind_polling_period P_ ((int)); | ||
| 281 | extern void stuff_buffered_input P_ ((Lisp_Object)); | ||
| 282 | extern void clear_waiting_for_input P_ ((void)); | ||
| 283 | extern void swallow_events P_ ((int)); | ||
| 284 | extern int help_char_p P_ ((Lisp_Object)); | ||
| 285 | extern void quit_throw_to_read_char P_ ((void)); | ||
| 286 | extern void cmd_error_internal P_ ((Lisp_Object, char *)); | ||
| 287 | extern void timer_start_idle P_ ((void)); | ||
| 288 | extern void timer_stop_idle P_ ((void)); | ||
| 289 | extern int lucid_event_type_list_p P_ ((Lisp_Object)); | ||
| 290 | extern void kbd_buffer_store_event P_ ((struct input_event *)); | ||