3 * Copyright (c) 2003 by Karsten Wiese <annabellesgarden@yahoo.de>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
55 unsigned char Fader
[9];
56 unsigned char Transport
;
57 unsigned char Modifier
;
58 unsigned char FilterSelect
;
61 unsigned char UNKNOWN
;
63 unsigned char Wheel
[5];
66 typedef struct us428_ctls us428_ctls_t
;
68 typedef struct us428_setByte
{
78 typedef struct usX2Y_volume
{
79 unsigned char Channel
,
87 us428_setByte_t Light
[7];
89 typedef struct us428_lights us428_lights_t
;
95 us428_lights_t lights
;
99 #define N_us428_ctl_BUFS 16
100 #define N_us428_p4out_BUFS 16
101 struct us428ctls_sharedmem
{
102 us428_ctls_t CtlSnapShot
[N_us428_ctl_BUFS
];
103 int CtlSnapShotDiffersAt
[N_us428_ctl_BUFS
];
104 int CtlSnapShotLast
, CtlSnapShotRed
;
105 us428_p4out_t p4out
[N_us428_p4out_BUFS
];
106 int p4outLast
, p4outSent
;
108 typedef struct us428ctls_sharedmem us428ctls_sharedmem_t
;