On 2-Dec-08, at 5:28 AM, Sean M. Pappalardo wrote:

> Hi again all.
>
> Does anyone know in which source file Mixxx is sending some data on  
> the
> MIDI bus when it is shut down? Or how I might find it?
>

Did Stanton verify this was occurring on Windows? My gut feeling is  
that it's one of our platform-specific MIDI backends doing something  
silly, although it might even be a parameter we're passing to the  
underlying API when we open some MIDI handle (ie. telling it to send  
these magic MIDI commands when we close the handle).

I just took a peek at midiobjectwin.cpp, and I see this:

115 void MidiObjectWin::devClose(QString device)
116 {
117     HMIDIIN handle = handles.value(device);
118     midiInReset(handle);
119     midiInClose(handle);
120     handles.remove(device);
121     openDevices.remove(device);
122 }

That midiInReset(handle) call is a Win32 MIDI (WinMM) API call. Can  
you google for that and see what that call does?

Thanks,
Albert


> Sincerely,
> Sean M. Pappalardo
>
>
> < 
> < 
> --------------------------------------------------------------------------------->
>  
> >
> This E-Mail message has been scanned for viruses
> and cleared by >>SmartMail<< from Smarter Technology, Inc.
> < 
> < 
> --------------------------------------------------------------------------------->
>  
> >
>
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's  
> challenge
> Build the coolest Linux based applications with Moblin SDK & win  
> great prizes
> Grand prize is a trip for two to an Open Source event anywhere in  
> the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> Mixxx-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/mixxx-devel


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Mixxx-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mixxx-devel

Reply via email to