Re: [e-users] Midi controller using Elementary

2013-02-13 Thread Justin Rosander
Strange, let's try that again. I'll just copy and paste, it's not too big: #include #include static snd_seq_t *seq_handle; static int out_port; void midi_open(void) { snd_seq_open(&seq_handle, "default", SND_SEQ_OPEN_OUTPUT, 0); snd_seq_set_client_name(seq_handle, "midcontroller");

Re: [e-users] Midi controller using Elementary

2013-02-13 Thread Daniel Juyung Seo
Hello, there is no file attachment. Maybe it's missing or filtered out? What is the file extension? Can you resend the file? Thanks. Daniel Juyung Seo (SeoZ) On Wed, Feb 13, 2013 at 11:02 PM, Justin Rosander wrote: > Hi there, > I'm having some trouble with the first program I've written using

[e-users] Midi controller using Elementary

2013-02-13 Thread Justin Rosander
Hi there, I'm having some trouble with the first program I've written using Elementary. It is a midi controller that sends CC messages for controller 1, channel 1 using the ALSA sequencer API. It works, but applications cannot connect directly to it; I have to use aconnect to do this, which is no