~ubuntu-branches/ubuntu/hoary/malaga/hoary

« back to all changes in this revision

Viewing changes to display.h

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Bushnell, BSG
  • Date: 2004-08-20 12:58:50 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040820125850-rx9s8bn0ep8jgist
Tags: 6.13-4
This should have been urgency=high, because it is an important and
long-delayed accomodation to new upstream with a bajillion bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 1995 Bjoern Beutel. */
 
2
 
 
3
/* Description. =============================================================*/
 
4
 
 
5
/* Managing the display process from Malaga. */
 
6
 
 
7
/* Variables. ===============================================================*/
 
8
 
 
9
extern FILE *display_stream; /* Stream to send data to the display process. */
 
10
extern string_t char_set; /* Character set to use for display process. */
 
11
 
 
12
/* Functions. ===============================================================*/
 
13
 
 
14
extern void start_display_process( void );
 
15
/* Start the Malaga display process by executing DISPLAY_COMMAND_LINE
 
16
 * if it is not already running. */
 
17
 
 
18
extern void stop_display_process( void );
 
19
/* Stop the Malaga display process. */
 
20
 
 
21
/* Commands. ================================================================*/
 
22
 
 
23
extern command_t display_line_option;
 
24
/* Set the command line to start the display process. */
 
25
 
 
26
/* End of file. =============================================================*/