~ubuntu-branches/debian/sid/bristol/sid

« back to all changes in this revision

Viewing changes to include/brighton/brightonDevtable.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2011-02-15 02:54:23 UTC
  • mfrom: (13.1.6 experimental)
  • Revision ID: james.westby@ubuntu.com-20110215025423-g8hcla5gyl08mae3
Tags: 0.60.8-2
* Upload to unstable.
* Relax JACK's build-deps to let this build in sid.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#define BRIGHTON_LEVER          10
34
34
#define BRIGHTON_MODWHEEL       11
35
35
#define BRIGHTON_LED            12
 
36
#define BRIGHTON_RIBBONKBD      13
36
37
 
37
38
typedef int (*brightonCreate)(brightonWindow *, brightonDevice *, int, char *);
38
39
typedef int (*brightonDestroy)(brightonDevice *);
72
73
extern int createLed(brightonWindow *, brightonDevice *, int, char *);
73
74
extern int destroyLed(brightonDevice *);
74
75
 
 
76
extern int createRibbon(brightonWindow *, brightonDevice *, int, char *);
 
77
extern int destroyRibbon(brightonDevice *);
 
78
 
75
79
typedef struct brightonDevices {
76
80
        brightonCreate create;
77
81
        brightonDestroy destroy;
92
96
        {createLever, destroyLever, 0},
93
97
        {createModWheel, destroyModWheel, 0},
94
98
        {createLed, destroyLed, 0},
 
99
        {createRibbon, destroyRibbon, 0},
95
100
        {0, 0, -1}
96
101
};
97
102