Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
c24df1bb
Commit
c24df1bb
authored
Mar 03, 2023
by
Davide Beatrici
Committed by
Alexandre Julliard
Mar 06, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winepulse: Return STATUS_SUCCESS for unused unixlib functions.
parent
09fd62b3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
14 deletions
+19
-14
pulse.c
dlls/winepulse.drv/pulse.c
+19
-14
No files found.
dlls/winepulse.drv/pulse.c
View file @
c24df1bb
...
...
@@ -119,6 +119,11 @@ static const REFERENCE_TIME DefaultPeriod = 100000;
static
pthread_mutex_t
pulse_mutex
;
static
pthread_cond_t
pulse_cond
=
PTHREAD_COND_INITIALIZER
;
static
NTSTATUS
pulse_not_implemented
(
void
*
args
)
{
return
STATUS_SUCCESS
;
}
static
void
pulse_lock
(
void
)
{
pthread_mutex_lock
(
&
pulse_mutex
);
...
...
@@ -2373,7 +2378,7 @@ const unixlib_entry_t __wine_unix_call_funcs[] =
pulse_release_render_buffer
,
pulse_get_capture_buffer
,
pulse_release_capture_buffer
,
NULL
,
pulse_not_implemented
,
pulse_get_mix_format
,
pulse_get_device_period
,
pulse_get_buffer_size
,
...
...
@@ -2387,12 +2392,12 @@ const unixlib_entry_t __wine_unix_call_funcs[] =
pulse_test_connect
,
pulse_is_started
,
pulse_get_prop_value
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
pulse_not_implemented
,
pulse_not_implemented
,
pulse_not_implemented
,
pulse_not_implemented
,
pulse_not_implemented
,
pulse_not_implemented
,
};
#ifdef _WIN64
...
...
@@ -2820,7 +2825,7 @@ const unixlib_entry_t __wine_unix_call_wow64_funcs[] =
pulse_release_render_buffer
,
pulse_wow64_get_capture_buffer
,
pulse_release_capture_buffer
,
NULL
,
pulse_not_implemented
,
pulse_wow64_get_mix_format
,
pulse_wow64_get_device_period
,
pulse_wow64_get_buffer_size
,
...
...
@@ -2834,12 +2839,12 @@ const unixlib_entry_t __wine_unix_call_wow64_funcs[] =
pulse_wow64_test_connect
,
pulse_is_started
,
pulse_wow64_get_prop_value
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
,
pulse_not_implemented
,
pulse_not_implemented
,
pulse_not_implemented
,
pulse_not_implemented
,
pulse_not_implemented
,
pulse_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