File: ui_screen_manager.h

package info (click to toggle)
mlterm 3.9.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,340 kB
  • sloc: ansic: 154,713; sh: 5,302; cpp: 2,953; objc: 2,776; java: 2,472; makefile: 2,445; perl: 1,674; xml: 44
file content (23 lines) | stat: -rw-r--r-- 602 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
/* -*- c-basic-offset:2; tab-width:2; indent-tabs-mode:nil -*- */

#ifndef __UI_SCREEN_MANAGER_H__
#define __UI_SCREEN_MANAGER_H__

#include <stdio.h> /* FILE */
#include "ui_screen.h"
#include "ui_main_config.h"

int ui_screen_manager_init(char *mlterm_version, u_int depth, u_int max_screens_multiple,
                           u_int num_startup_screens, ui_main_config_t *main_config);

void ui_screen_manager_final(void);

u_int ui_screen_manager_startup(void);

void ui_close_dead_screens(void);

u_int ui_get_all_screens(ui_screen_t*** _screens);

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

#endif