File: ttyresize.h

package info (click to toggle)
svgatextmode 1.9-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 1,992 kB
  • ctags: 3,417
  • sloc: ansic: 15,072; sh: 403; makefile: 344; yacc: 340; lex: 227; sed: 15; asm: 12
file content (53 lines) | stat: -rw-r--r-- 1,405 bytes parent folder | download | duplicates (5)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*  SVGATextMode -- An SVGA textmode manipulation/enhancement tool
 *
 *  Copyright (C) 1995-1998  Koen Gadeyne
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

/***
 *** tty resizing code for SVGATextMode.
 ***/

#ifndef _TTYRESIZE_H
#define _TTYRESIZE_H

#ifndef DOS
#  include <sys/types.h>

#  include <linux/vt.h> 

#  ifndef NO_RESIZE

     int do_VT_RESIZE(int cols, int rows, int resize1x1);

     int do_VT_RESIZEX(int cols, int rows, int vlin, int clin, int vcol, int ccol, int allow1x1);

     void resize_specified_vts(int cols, int rows);

     void resize_active_vts(int cols, int rows);

#  endif

#else
   int resize_DOS(int cols, int rows, int fontsize); // AB
#endif


int check_if_resize(int cols, int rows);

#endif