Mercurial > emacs
comparison src/keyboard.h @ 20318:1507c5324f4c
Add prototypes and more function declarations.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Fri, 21 Nov 1997 15:12:34 +0000 |
parents | 66e8848c9c49 |
children | 41ed45a73873 |
comparison
equal
deleted
inserted
replaced
20317:f62a4f83537e | 20318:1507c5324f4c |
---|---|
247 (Fget ((event_head), Qevent_kind)) | 247 (Fget ((event_head), Qevent_kind)) |
248 | 248 |
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 *)); |