~ubuntu-branches/ubuntu/trusty/proll/trusty

« back to all changes in this revision

Viewing changes to src/vconsole.h

  • Committer: Bazaar Package Importer
  • Author(s): Guillem Jover
  • Date: 2011-06-08 04:35:59 UTC
  • Revision ID: james.westby@ubuntu.com-20110608043559-8ln88b583x0uqcox
Tags: 18-5
* Switch to debhelper compatibility level 7.
* Use dh_prep instead of “dh_clean -k”.
* Use $(filter ...) instead of $(findstring ...) to extract space separated
  options from DEB_BUILD_OPTIONS in debian/rules.
* Switch to source format “3.0 (quilt)”:
  - Remove quilt from Build-Depends.
  - Remove quilt.make include from debian/rules.
  - Remove patch and unpatch targets from debian/rules.
  - Remove now unneeded debian/README.source.
* Now using Standards-Version 3.9.2 (no changes needed).
* Remove leading ‘./’ from lintian overrides.
* Rename build target to build-indep, install to install-indep, and add
  an empty build-arch target.
* Use dpkg-buildflags to set CPPFLAGS, CFLAGS and LDFLAGS.
* Disable Sparc V9 specific unbuildable code.
* Add ${misc:Depends} to Depends field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
#ifndef VCONSOLE_H
7
7
#define VCONSOLE_H
8
8
 
 
9
#define NPAR 16
 
10
 
9
11
struct vconterm {
10
12
        void *impl;
11
13
 
13
15
        int backc;              /* Same, count */
14
16
 
15
17
        int vc_x, vc_y;         /* XXX Make vcon_xxx() to use cellmap->xpos_ */
 
18
        int vc_state;
 
19
        unsigned int    vc_npar,vc_par[NPAR];   /* Parameters of current escape sequence */
16
20
};
17
21
 
18
22
int vcon_init(struct vconterm *t, unsigned int a0);