Changeset 34 for GPL/trunk/lib32/soundmidi.c
- Timestamp:
- Dec 11, 2005, 5:57:39 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/lib32/soundmidi.c
r33 r34 48 48 midihandle *pHandle; 49 49 int ret, i; 50 struct snd rv_seq_port_subscribe subs;51 struct snd rv_seq_client_info clientinfo;52 struct snd rv_seq_port_info portinfo;50 struct snd_seq_port_subscribe subs; 51 struct snd_seq_client_info clientinfo; 52 struct snd_seq_port_info portinfo; 53 53 54 54 *pStreamId = 0; … … 203 203 //unsubscribe 204 204 if(pHandle->state & MIDISTATE_SUBSCRIBED) { 205 struct snd rv_seq_port_subscribe subs;205 struct snd_seq_port_subscribe subs; 206 206 207 207 memset(&subs, 0, sizeof(subs)); … … 219 219 //delete port 220 220 if(pHandle->state & MIDISTATE_SUBSCRIBED) { 221 struct snd rv_seq_port_info portinfo;221 struct snd_seq_port_info portinfo; 222 222 223 223 memset(&portinfo, 0, sizeof(portinfo)); … … 287 287 int ret; 288 288 LONG transferred; 289 struct snd rv_seq_event fmevent;289 struct snd_seq_event fmevent; 290 290 291 291 if(pHandle == NULL || pHandle->magic != MAGIC_MIDI_ALSA32) {
Note:
See TracChangeset
for help on using the changeset viewer.