12345678910111213141516171819202122232425262728293031323334353637 |
- /*
- * This file is part of the UCB release of Plan 9. It is subject to the license
- * terms in the LICENSE file found in the top-level directory of this
- * distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
- * part of the UCB release of Plan 9, including this file, may be copied,
- * modified, propagated, or distributed except according to the terms contained
- * in the LICENSE file.
- */
- enum{
- Undef = 0x80000000,
- Play = 0,
- Record = 1,
- };
- typedef struct Audiocontrol Audiocontrol;
- struct Audiocontrol {
- char *name;
- u8 readable;
- u8 settable;
- u8 chans; /* 0 is master, non-zero is bitmap */
- i32 value[8]; /* 0 is master; value[0] == Undef -> all values Undef */
- i32 min, max, step;
- };
- extern Audiocontrol controls[2][Ncontrol];
- extern int endpt[2];
- extern int interface[2];
- extern int featureid[2];
- extern int selectorid[2];
- extern int mixerid[2];
- extern int buttonendpt;
- int ctlparse(char *s, Audiocontrol *c, i32 *v);
- void ctlevent(void);
|