comparison src/termhooks.h @ 83422:1f5d64c4df6f

Fix compilation errors in previous commit. * src/callproc.c (getenv_internal): Fix get_terminal_param call. * dispextern.h (get_device): Move declaration to termhooks.h. * termhooks.h (get_device): Move here. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-462
author Karoly Lorentey <lorentey@elte.hu>
date Mon, 26 Dec 2005 02:21:31 +0000
parents bb2edc915032
children b64b7e867d0a
comparison
equal deleted inserted replaced
83421:bb2edc915032 83422:1f5d64c4df6f
594 594
595 /* Return true if the display device is not suspended. */ 595 /* Return true if the display device is not suspended. */
596 #define DEVICE_ACTIVE_P(d) ((d)->type != output_termcap || (d)->display_info.tty->input) 596 #define DEVICE_ACTIVE_P(d) ((d)->type != output_termcap || (d)->display_info.tty->input)
597 597
598 extern Lisp_Object get_terminal_param P_ ((struct device *, Lisp_Object)); 598 extern Lisp_Object get_terminal_param P_ ((struct device *, Lisp_Object));
599 599 extern struct device *get_device P_ ((Lisp_Object display, int));
600 extern struct device *create_device P_ ((void)); 600 extern struct device *create_device P_ ((void));
601 extern void delete_device P_ ((struct device *)); 601 extern void delete_device P_ ((struct device *));
602 602
603 /* The initial display device, created by initial_term_init. */ 603 /* The initial display device, created by initial_term_init. */
604 extern struct device *initial_device; 604 extern struct device *initial_device;