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
9b681e03
Commit
9b681e03
authored
Aug 13, 2023
by
Davide Beatrici
Committed by
Alexandre Julliard
Aug 23, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecoreaudio: Remove GetEndpointIDs.
parent
d800159d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
61 deletions
+0
-61
mmdevdrv.c
dlls/winecoreaudio.drv/mmdevdrv.c
+0
-60
winecoreaudio.drv.spec
dlls/winecoreaudio.drv/winecoreaudio.drv.spec
+0
-1
No files found.
dlls/winecoreaudio.drv/mmdevdrv.c
View file @
9b681e03
...
@@ -151,66 +151,6 @@ void WINAPI get_device_guid(EDataFlow flow, const char *dev, GUID *guid)
...
@@ -151,66 +151,6 @@ void WINAPI get_device_guid(EDataFlow flow, const char *dev, GUID *guid)
RegCloseKey
(
key
);
RegCloseKey
(
key
);
}
}
HRESULT
WINAPI
AUDDRV_GetEndpointIDs
(
EDataFlow
flow
,
WCHAR
***
ids_out
,
GUID
**
guids_out
,
UINT
*
num
,
UINT
*
def_index
)
{
struct
get_endpoint_ids_params
params
;
unsigned
int
i
;
GUID
*
guids
=
NULL
;
WCHAR
**
ids
=
NULL
;
TRACE
(
"%d %p %p %p
\n
"
,
flow
,
ids_out
,
num
,
def_index
);
params
.
flow
=
flow
;
params
.
size
=
1000
;
params
.
endpoints
=
NULL
;
do
{
heap_free
(
params
.
endpoints
);
params
.
endpoints
=
heap_alloc
(
params
.
size
);
UNIX_CALL
(
get_endpoint_ids
,
&
params
);
}
while
(
params
.
result
==
HRESULT_FROM_WIN32
(
ERROR_INSUFFICIENT_BUFFER
));
if
(
FAILED
(
params
.
result
))
goto
end
;
ids
=
heap_alloc_zero
(
params
.
num
*
sizeof
(
*
ids
));
guids
=
heap_alloc
(
params
.
num
*
sizeof
(
*
guids
));
if
(
!
ids
||
!
guids
){
params
.
result
=
E_OUTOFMEMORY
;
goto
end
;
}
for
(
i
=
0
;
i
<
params
.
num
;
i
++
){
const
WCHAR
*
name
=
(
WCHAR
*
)((
char
*
)
params
.
endpoints
+
params
.
endpoints
[
i
].
name
);
const
char
*
device
=
(
char
*
)
params
.
endpoints
+
params
.
endpoints
[
i
].
device
;
const
unsigned
int
size
=
(
wcslen
(
name
)
+
1
)
*
sizeof
(
WCHAR
);
ids
[
i
]
=
heap_alloc
(
size
);
if
(
!
ids
[
i
]){
params
.
result
=
E_OUTOFMEMORY
;
goto
end
;
}
memcpy
(
ids
[
i
],
name
,
size
);
get_device_guid
(
flow
,
device
,
guids
+
i
);
}
*
def_index
=
params
.
default_idx
;
end:
heap_free
(
params
.
endpoints
);
if
(
FAILED
(
params
.
result
)){
heap_free
(
guids
);
if
(
ids
){
for
(
i
=
0
;
i
<
params
.
num
;
i
++
)
heap_free
(
ids
[
i
]);
heap_free
(
ids
);
}
}
else
{
*
ids_out
=
ids
;
*
guids_out
=
guids
;
*
num
=
params
.
num
;
}
return
params
.
result
;
}
BOOL
WINAPI
get_device_name_from_guid
(
const
GUID
*
guid
,
char
**
name
,
EDataFlow
*
flow
)
BOOL
WINAPI
get_device_name_from_guid
(
const
GUID
*
guid
,
char
**
name
,
EDataFlow
*
flow
)
{
{
HKEY
devices_key
;
HKEY
devices_key
;
...
...
dlls/winecoreaudio.drv/winecoreaudio.drv.spec
View file @
9b681e03
...
@@ -6,4 +6,3 @@
...
@@ -6,4 +6,3 @@
# MMDevAPI driver functions
# MMDevAPI driver functions
@ stdcall -private get_device_guid(long ptr ptr) get_device_guid
@ stdcall -private get_device_guid(long ptr ptr) get_device_guid
@ stdcall -private get_device_name_from_guid(ptr ptr ptr) get_device_name_from_guid
@ stdcall -private get_device_name_from_guid(ptr ptr ptr) get_device_name_from_guid
@ stdcall -private GetEndpointIDs(long ptr ptr ptr ptr) AUDDRV_GetEndpointIDs
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