~ubuntu-branches/ubuntu/karmic/aeolus/karmic

« back to all changes in this revision

Viewing changes to midimatrix.h

  • Committer: Bazaar Package Importer
  • Author(s): Free Ekanayaka
  • Date: 2008-04-14 15:22:24 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080414152224-o82sdauahj4ufzrp
Tags: 0.8.1-1
* New upstream release
* Updated watch file
* Updated makefile patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
    Copyright (C) 2003-2005 Fons Adriaensen <fons.adriaensen@skynet.be>
 
2
    Copyright (C) 2003-2008 Fons Adriaensen <fons@kokkinizita.net>
3
3
    
4
4
    This program is free software; you can redistribute it and/or modify
5
5
    it under the terms of the GNU General Public License as published by
37
37
    void init (M_ifc_init *M);
38
38
    int  xsize (void) const { return _xs; }
39
39
    int  ysize (void) const { return _ys; }
40
 
    U16 *get_chconf (void) { return _chconf; }
41
 
    void set_chconf (U16 *);
 
40
    uint16_t *get_chconf (void) { return _chconf; }
 
41
    void      set_chconf (uint16_t *);
42
42
 
43
43
private:
44
44
 
58
58
    int             _nkeybd;
59
59
    int             _ndivis;
60
60
    const char     *_label [15];
61
 
    U16             _flags [6];
62
 
    U16             _chconf [16];
 
61
    uint16_t        _flags [6];
 
62
    uint16_t        _chconf [16];
63
63
    int             _chan;
64
64
};
65
65