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
e946ce6b
Commit
e946ce6b
authored
Jan 03, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 04, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput: Declare some functions static.
parent
d39e1c36
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
joystick_linux.c
dlls/dinput/joystick_linux.c
+7
-7
keyboard.c
dlls/dinput/keyboard.c
+1
-1
No files found.
dlls/dinput/joystick_linux.c
View file @
e946ce6b
...
...
@@ -1214,11 +1214,11 @@ static HRESULT WINAPI JoystickAImpl_GetProperty(
/******************************************************************************
* GetObjectInfo : get object info
*/
HRESULT
WINAPI
JoystickAImpl_GetObjectInfo
(
LPDIRECTINPUTDEVICE8A
iface
,
LPDIDEVICEOBJECTINSTANCEA
pdidoi
,
DWORD
dwObj
,
DWORD
dwHow
)
static
HRESULT
WINAPI
JoystickAImpl_GetObjectInfo
(
LPDIRECTINPUTDEVICE8A
iface
,
LPDIDEVICEOBJECTINSTANCEA
pdidoi
,
DWORD
dwObj
,
DWORD
dwHow
)
{
JoystickImpl
*
This
=
(
JoystickImpl
*
)
iface
;
DIDEVICEOBJECTINSTANCEA
didoiA
;
...
...
@@ -1302,7 +1302,7 @@ HRESULT WINAPI JoystickAImpl_GetObjectInfo(
/******************************************************************************
* GetDeviceInfo : get information about a device's identity
*/
HRESULT
WINAPI
JoystickAImpl_GetDeviceInfo
(
static
HRESULT
WINAPI
JoystickAImpl_GetDeviceInfo
(
LPDIRECTINPUTDEVICE8A
iface
,
LPDIDEVICEINSTANCEA
pdidi
)
{
...
...
@@ -1342,7 +1342,7 @@ HRESULT WINAPI JoystickAImpl_GetDeviceInfo(
/******************************************************************************
* GetDeviceInfo : get information about a device's identity
*/
HRESULT
WINAPI
JoystickWImpl_GetDeviceInfo
(
static
HRESULT
WINAPI
JoystickWImpl_GetDeviceInfo
(
LPDIRECTINPUTDEVICE8W
iface
,
LPDIDEVICEINSTANCEW
pdidi
)
{
...
...
dlls/dinput/keyboard.c
View file @
e946ce6b
...
...
@@ -61,7 +61,7 @@ static SysKeyboardImpl* current_lock = NULL;
static
BYTE
DInputKeyState
[
WINE_DINPUT_KEYBOARD_MAX_KEYS
];
/* array for 'GetDeviceState' */
LRESULT
CALLBACK
KeyboardCallback
(
int
code
,
WPARAM
wparam
,
LPARAM
lparam
)
static
LRESULT
CALLBACK
KeyboardCallback
(
int
code
,
WPARAM
wparam
,
LPARAM
lparam
)
{
SysKeyboardImpl
*
This
=
(
SysKeyboardImpl
*
)
current_lock
;
int
dik_code
;
...
...
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