Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
41b8a570
Commit
41b8a570
authored
Apr 30, 2007
by
Emmanuel Maillard
Committed by
Alexandre Julliard
May 01, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecoreaudio.drv: MIDIIn_MessageHandler: Remove a TRACE and simplify skipping SysEx.
parent
49bb20cf
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
10 deletions
+0
-10
midi.c
dlls/winecoreaudio.drv/midi.c
+0
-10
No files found.
dlls/winecoreaudio.drv/midi.c
View file @
41b8a570
...
...
@@ -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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment