File: mincurses.h

package info (click to toggle)
squishyball 0.1~svn19085-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 264 kB
  • ctags: 306
  • sloc: ansic: 4,777; sh: 115; makefile: 21
file content (53 lines) | stat: -rw-r--r-- 1,716 bytes parent folder | download | duplicates (4)
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
/*
 *
 *  mincurses
 *
 *      Copyright (C) 2010 Xiph.Org
 *      Portions Copyright (C) 1998-2009 Free Software Foundation, Inc.
 *
 *  mincurses 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, or (at your option)
 *  any later version.
 *
 *  mincurses 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 rtrecord; see the file COPYING.  If not, write to the
 *  Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 *
 */

#ifndef _MINCURSES_H_
#define _MINCURSES_H_

extern int min_flush();
extern int min_getch(int nonblock);
extern int min_putchar(int c);
extern int min_putp(const char *str);
extern int min_write(const char *str,int len);
extern int min_putstr(const char *str);
extern void min_mvcur(int x, int y);
extern int min_panel_init(int pl);
extern void min_panel_remove(void);
extern int min_panel_expand(int l,int bottomp);
extern int min_panel_contract(int l,int bottomp);
extern int min_hidecur(void);
extern int min_showcur(void);
extern int min_clreol(void);
extern int min_clrbol(void);

extern int min_unset(void);
extern int min_fg(int c);
extern int min_bg(int c);
extern int min_color(int f,int b);
extern int min_bold(int flag);
extern int min_blink(int flag);
extern int min_underline(int flag);
extern int min_reverse(int flag);
extern int min_gfx(int flag);
#endif