winecoreaudio.drv: MIDIIn_MessageHandler: Remove a TRACE and simplify skipping SysEx.

This commit is contained in:
Emmanuel Maillard 2007-04-30 14:34:23 +02:00 committed by Alexandre Julliard
parent 49bb20cf35
commit 41b8a570dc
1 changed files with 0 additions and 10 deletions

View File

@ -845,7 +845,6 @@ static CFDataRef MIDIIn_MessageHandler(CFMessagePortRef local, SInt32 msgid, CFD
MIDISource *src = NULL;
DWORD sendData = 0;
TRACE("\n");
switch (msgid)
{
case 0:
@ -866,15 +865,6 @@ static CFDataRef MIDIIn_MessageHandler(CFMessagePortRef local, SInt32 msgid, CFD
{
FIXME("Starting System Exclusive\n");
src->state |= 2;
for (i = 0; i < msg->length; ++i)
{
if (msg->data[i] == 0xF7)
{
FIXME("Ending System Exclusive\n");
src->state &= ~2;
}
}
goto done;
}
if (src->state & 2)
{