Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jason Beetham
wine
Commits
b343fa80
Commit
b343fa80
authored
25 years ago
by
Eric Pouech
Committed by
Alexandre Julliard
25 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Updated traces.
parent
c744345a
No related branches found
Branches containing commit
Tags
wine-940804
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
multimedia/mixer.c
+6
-4
6 additions, 4 deletions
multimedia/mixer.c
with
6 additions
and
4 deletions
multimedia/mixer.c
+
6
−
4
View file @
b343fa80
...
...
@@ -52,6 +52,7 @@ static BOOL MIX_GetVal(int chn, int* val)
WARN
(
"mixer device not available !
\n
"
);
}
else
{
if
(
ioctl
(
mixer
,
MIXER_READ
(
chn
),
val
)
>=
0
)
{
TRACE
(
"Reading %x on %d
\n
"
,
*
val
,
chn
);
ret
=
TRUE
;
}
close
(
mixer
);
...
...
@@ -363,7 +364,7 @@ static DWORD MIX_GetLineControls(WORD wDevID, LPMIXERLINECONTROLSA lpMlc, DWORD
return
MMSYSERR_INVALPARAM
;
break
;
default:
ERR
(
"Unknown
query
%08lx
\n
"
,
flags
&
MIXER_GETLINECONTROLSF_QUERYMASK
);
ERR
(
"Unknown
flag
%08lx
\n
"
,
flags
&
MIXER_GETLINECONTROLSF_QUERYMASK
);
return
MMSYSERR_INVALPARAM
;
}
TRACE
(
"Returning volume control
\n
"
);
...
...
@@ -399,7 +400,7 @@ static DWORD MIX_GetControlDetails(WORD wDevID, LPMIXERCONTROLDETAILS lpmcd, DWO
{
DWORD
ret
=
MMSYSERR_NOTSUPPORTED
;
FIXM
E
(
"(%04X, %p, %lu)
: stub!
\n
"
,
wDevID
,
lpmcd
,
fdwDetails
);
TRAC
E
(
"(%04X, %p, %lu)
\n
"
,
wDevID
,
lpmcd
,
fdwDetails
);
if
(
lpmcd
==
NULL
)
return
MMSYSERR_INVALPARAM
;
...
...
@@ -440,7 +441,7 @@ static DWORD MIX_GetControlDetails(WORD wDevID, LPMIXERCONTROLDETAILS lpmcd, DWO
FIXME
(
"NIY
\n
"
);
break
;
default:
WARN
(
"Unknown
GetControlDetails
flag (%08lx)
\n
"
,
fdwDetails
&
MIXER_GETCONTROLDETAILSF_QUERYMASK
);
WARN
(
"Unknown flag (%08lx)
\n
"
,
fdwDetails
&
MIXER_GETCONTROLDETAILSF_QUERYMASK
);
}
return
ret
;
}
...
...
@@ -451,7 +452,8 @@ static DWORD MIX_GetControlDetails(WORD wDevID, LPMIXERCONTROLDETAILS lpmcd, DWO
static
DWORD
MIX_SetControlDetails
(
WORD
wDevID
,
LPMIXERCONTROLDETAILS
lpmcd
,
DWORD
fdwDetails
)
{
DWORD
ret
=
MMSYSERR_NOTSUPPORTED
;
FIXME
(
"(%04X, %p, %lu): stub!
\n
"
,
wDevID
,
lpmcd
,
fdwDetails
);
TRACE
(
"(%04X, %p, %lu)
\n
"
,
wDevID
,
lpmcd
,
fdwDetails
);
if
(
lpmcd
==
NULL
)
return
MMSYSERR_INVALPARAM
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment