File: x_screen_manager.h

package info (click to toggle)
mlterm 3.3.8-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 21,204 kB
  • ctags: 9,659
  • sloc: ansic: 125,933; sh: 9,668; java: 2,310; makefile: 1,783; perl: 1,603; cpp: 1,101; xml: 42; sed: 16
file content (29 lines) | stat: -rw-r--r-- 556 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 *	$Id$
 */

#ifndef  __X_SCREEN_MANAGER_H__
#define  __X_SCREEN_MANAGER_H__


#include  <stdio.h>	/* FILE */
#include  "x_screen.h"
#include  "x_main_config.h"


int  x_screen_manager_init( char *  mlterm_version , u_int  depth ,
	u_int  max_screens_multiple , u_int  num_of_startup_screens ,
	x_main_config_t *  main_config) ;

int  x_screen_manager_final(void) ;

u_int  x_screen_manager_startup(void) ;

int  x_close_dead_screens(void) ;

u_int  x_get_all_screens( x_screen_t ***  _screens) ;

int  x_mlclient( char *  args , FILE *  fp) ;


#endif