~ubuntu-branches/ubuntu/trusty/lifelines/trusty

« back to all changes in this revision

Viewing changes to src/hdrs/win32/curses.h

  • Committer: Bazaar Package Importer
  • Author(s): Felipe Augusto van de Wiel (faw)
  • Date: 2007-05-23 23:49:53 UTC
  • mfrom: (3.1.3 edgy)
  • Revision ID: james.westby@ubuntu.com-20070523234953-ogno9rnbmth61i7p
Tags: 3.0.50-2etch1
* Changing docs/ll-reportmanual.xml and docs/ll-userguide.xml to fix
  documentation build problems (Closes: #418347).

* lifelines-reports
  - Adding a dependency to lifelines >= 3.0.50 to prevent file conflict.
    (Closes: #405500).

* Updating French translation. Thanks to Bernard Adrian. (Closes: #356671).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* curses.h - formerly mycurses.h */
 
1
/* curses.h */
 
2
/* header for windows implementation of curses library */
2
3
 
3
4
#ifndef CURSES_H
4
 
 
5
5
#define CURSES_H        /* define prevents multiple includes */
6
6
 
7
7
#ifdef __cplusplus
15
15
#define INCLUDED_STDARG_H
16
16
#endif
17
17
 
 
18
 
 
19
#define NCURSES_VERSION_MAJOR 5
 
20
#define NCURSES_VERSION_MINOR 0
 
21
 
18
22
/* we truncate screen to no larger than this */
19
23
#define CUR_MAXLINES 80
20
24
#define CUR_MAXCOLS 200
58
62
int cbreak();
59
63
int clearok(WINDOW *wp, int okay);
60
64
int crmode();
 
65
int curs_set(int mode);
61
66
int delwin(WINDOW *wp);
62
67
int doupdate(void);
63
68
int echo();