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
afe10430
Commit
afe10430
authored
Feb 16, 2022
by
Rémi Bernon
Committed by
Alexandre Julliard
Feb 16, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebus.sys: Add missing static qualifiers in bus_sdl.c.
Signed-off-by:
Rémi Bernon
<
rbernon@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
57aaa274
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
bus_sdl.c
dlls/winebus.sys/bus_sdl.c
+3
-3
No files found.
dlls/winebus.sys/bus_sdl.c
View file @
afe10430
...
...
@@ -400,8 +400,8 @@ static void sdl_device_stop(struct unix_device *iface)
pthread_mutex_unlock
(
&
sdl_cs
);
}
NTSTATUS
sdl_device_haptics_start
(
struct
unix_device
*
iface
,
UINT
duration_ms
,
USHORT
rumble_intensity
,
USHORT
buzz_intensity
)
static
NTSTATUS
sdl_device_haptics_start
(
struct
unix_device
*
iface
,
UINT
duration_ms
,
USHORT
rumble_intensity
,
USHORT
buzz_intensity
)
{
struct
sdl_device
*
impl
=
impl_from_unix_device
(
iface
);
SDL_HapticEffect
effect
;
...
...
@@ -439,7 +439,7 @@ NTSTATUS sdl_device_haptics_start(struct unix_device *iface, UINT duration_ms,
return
STATUS_SUCCESS
;
}
NTSTATUS
sdl_device_haptics_stop
(
struct
unix_device
*
iface
)
static
NTSTATUS
sdl_device_haptics_stop
(
struct
unix_device
*
iface
)
{
struct
sdl_device
*
impl
=
impl_from_unix_device
(
iface
);
...
...
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