mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-31 22:25:34 -04:00
- don't use kernel stuff. use the values in alsa-lib instead.
This commit is contained in:
parent
9145abcdff
commit
dffbf3c8e4
1 changed files with 5 additions and 6 deletions
|
|
@ -17,7 +17,6 @@
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sound/asequencer.h>
|
|
||||||
#include "Cus428State.h"
|
#include "Cus428State.h"
|
||||||
|
|
||||||
class Cus428Midi {
|
class Cus428Midi {
|
||||||
|
|
@ -30,11 +29,11 @@ class Cus428Midi {
|
||||||
if (0 <= (Err = snd_seq_open(&Seq, "default", SND_SEQ_OPEN_DUPLEX, SND_SEQ_NONBLOCK))) {
|
if (0 <= (Err = snd_seq_open(&Seq, "default", SND_SEQ_OPEN_DUPLEX, SND_SEQ_NONBLOCK))) {
|
||||||
snd_seq_set_client_name(Seq, "US-428");
|
snd_seq_set_client_name(Seq, "US-428");
|
||||||
Err = snd_seq_create_simple_port(Seq, "Controls",
|
Err = snd_seq_create_simple_port(Seq, "Controls",
|
||||||
SNDRV_SEQ_PORT_CAP_READ
|
SND_SEQ_PORT_CAP_READ
|
||||||
//|SNDRV_SEQ_PORT_CAP_WRITE FIXME: Next Step is to make Lights switchable
|
//|SND_SEQ_PORT_CAP_WRITE FIXME: Next Step is to make Lights switchable
|
||||||
|SNDRV_SEQ_PORT_CAP_SUBS_READ
|
|SND_SEQ_PORT_CAP_SUBS_READ
|
||||||
/*|SNDRV_SEQ_PORT_CAP_SUBS_WRITE*/,
|
/*|SND_SEQ_PORT_CAP_SUBS_WRITE*/,
|
||||||
SNDRV_SEQ_PORT_TYPE_MIDI_GENERIC);
|
SND_SEQ_PORT_TYPE_MIDI_GENERIC);
|
||||||
if (Err >= 0) {
|
if (Err >= 0) {
|
||||||
Port = Err;
|
Port = Err;
|
||||||
snd_seq_ev_clear(&Ev);
|
snd_seq_ev_clear(&Ev);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue