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
ae3c2d7c
Commit
ae3c2d7c
authored
Mar 03, 2023
by
Davide Beatrici
Committed by
Alexandre Julliard
Mar 06, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winecoreaudio: Return STATUS_SUCCESS for unused unixlib functions.
parent
0870956c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
18 deletions
+23
-18
coreaudio.c
dlls/winecoreaudio.drv/coreaudio.c
+23
-18
No files found.
dlls/winecoreaudio.drv/coreaudio.c
View file @
ae3c2d7c
...
...
@@ -96,6 +96,11 @@ struct coreaudio_stream
BYTE
*
local_buffer
,
*
cap_buffer
,
*
wrap_buffer
,
*
resamp_buffer
,
*
tmp_buffer
;
};
static
NTSTATUS
unix_not_implemented
(
void
*
args
)
{
return
STATUS_SUCCESS
;
}
static
HRESULT
osstatus_to_hresult
(
OSStatus
sc
)
{
switch
(
sc
){
...
...
@@ -1647,23 +1652,23 @@ static NTSTATUS unix_set_volumes(void *args)
unixlib_entry_t
__wine_unix_call_funcs
[]
=
{
NULL
,
NULL
,
NULL
,
unix_not_implemented
,
unix_not_implemented
,
unix_not_implemented
,
unix_get_endpoint_ids
,
unix_create_stream
,
unix_release_stream
,
unix_start
,
unix_stop
,
unix_reset
,
NULL
,
unix_not_implemented
,
unix_get_render_buffer
,
unix_release_render_buffer
,
unix_get_capture_buffer
,
unix_release_capture_buffer
,
unix_is_format_supported
,
unix_get_mix_format
,
NULL
,
unix_not_implemented
,
unix_get_buffer_size
,
unix_get_latency
,
unix_get_current_padding
,
...
...
@@ -1671,16 +1676,16 @@ unixlib_entry_t __wine_unix_call_funcs[] =
unix_get_frequency
,
unix_get_position
,
unix_set_volumes
,
NULL
,
NULL
,
unix_not_implemented
,
unix_not_implemented
,
unix_is_started
,
NULL
,
unix_not_implemented
,
unix_midi_init
,
unix_midi_release
,
unix_midi_out_message
,
unix_midi_in_message
,
unix_midi_notify_wait
,
NULL
,
unix_not_implemented
,
};
#ifdef _WIN64
...
...
@@ -1991,23 +1996,23 @@ static NTSTATUS unix_wow64_set_volumes(void *args)
unixlib_entry_t
__wine_unix_call_wow64_funcs
[]
=
{
NULL
,
NULL
,
NULL
,
unix_not_implemented
,
unix_not_implemented
,
unix_not_implemented
,
unix_wow64_get_endpoint_ids
,
unix_wow64_create_stream
,
unix_wow64_release_stream
,
unix_start
,
unix_stop
,
unix_reset
,
NULL
,
unix_not_implemented
,
unix_wow64_get_render_buffer
,
unix_release_render_buffer
,
unix_wow64_get_capture_buffer
,
unix_release_capture_buffer
,
unix_wow64_is_format_supported
,
unix_wow64_get_mix_format
,
NULL
,
unix_not_implemented
,
unix_wow64_get_buffer_size
,
unix_wow64_get_latency
,
unix_wow64_get_current_padding
,
...
...
@@ -2015,16 +2020,16 @@ unixlib_entry_t __wine_unix_call_wow64_funcs[] =
unix_wow64_get_frequency
,
unix_wow64_get_position
,
unix_wow64_set_volumes
,
NULL
,
NULL
,
unix_not_implemented
,
unix_not_implemented
,
unix_is_started
,
NULL
,
unix_not_implemented
,
unix_wow64_midi_init
,
unix_midi_release
,
unix_wow64_midi_out_message
,
unix_wow64_midi_in_message
,
unix_wow64_midi_notify_wait
,
NULL
,
unix_not_implemented
,
};
#endif
/* _WIN64 */
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