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
dbd2112e
Commit
dbd2112e
authored
Jan 10, 2007
by
Vitaliy Margolen
Committed by
Alexandre Julliard
Jan 11, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput: Internal data format is not const anymore.
parent
a1dd4cb7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
device_private.h
dlls/dinput/device_private.h
+1
-1
joystick_linux.c
dlls/dinput/joystick_linux.c
+0
-0
joystick_linuxinput.c
dlls/dinput/joystick_linuxinput.c
+2
-2
keyboard.c
dlls/dinput/keyboard.c
+2
-2
mouse.c
dlls/dinput/mouse.c
+2
-2
No files found.
dlls/dinput/device_private.h
View file @
dbd2112e
...
...
@@ -41,7 +41,7 @@ typedef struct
DataTransform
*
dt
;
int
*
offsets
;
/* object offsets */
LP
CDIDATAFORMAT
wine_df
;
/* wine internal data format */
LP
DIDATAFORMAT
wine_df
;
/* wine internal data format */
LPDIDATAFORMAT
user_df
;
/* user defined data format */
}
DataFormat
;
...
...
dlls/dinput/joystick_linux.c
View file @
dbd2112e
This diff is collapsed.
Click to expand it.
dlls/dinput/joystick_linuxinput.c
View file @
dbd2112e
...
...
@@ -520,8 +520,8 @@ static ULONG WINAPI JoystickAImpl_Release(LPDIRECTINPUTDEVICE8A iface)
HeapFree
(
GetProcessHeap
(),
0
,
This
->
base
.
data_queue
);
/* release the data transform filter */
HeapFree
(
GetProcessHeap
(),
0
,
(
LPVOID
)
This
->
base
.
data_format
.
wine_df
->
rgodf
);
HeapFree
(
GetProcessHeap
(),
0
,
(
LPVOID
)
This
->
base
.
data_format
.
wine_df
);
HeapFree
(
GetProcessHeap
(),
0
,
This
->
base
.
data_format
.
wine_df
->
rgodf
);
HeapFree
(
GetProcessHeap
(),
0
,
This
->
base
.
data_format
.
wine_df
);
release_DataFormat
(
&
This
->
base
.
data_format
);
IDirectInput_Release
((
LPDIRECTINPUTDEVICE8A
)
This
->
dinput
);
...
...
dlls/dinput/keyboard.c
View file @
dbd2112e
...
...
@@ -285,8 +285,8 @@ static ULONG WINAPI SysKeyboardAImpl_Release(LPDIRECTINPUTDEVICE8A iface)
HeapFree
(
GetProcessHeap
(),
0
,
This
->
base
.
data_queue
);
/* Free data format */
HeapFree
(
GetProcessHeap
(),
0
,
(
LPVOID
)
This
->
base
.
data_format
.
wine_df
->
rgodf
);
HeapFree
(
GetProcessHeap
(),
0
,
(
LPVOID
)
This
->
base
.
data_format
.
wine_df
);
HeapFree
(
GetProcessHeap
(),
0
,
This
->
base
.
data_format
.
wine_df
->
rgodf
);
HeapFree
(
GetProcessHeap
(),
0
,
This
->
base
.
data_format
.
wine_df
);
release_DataFormat
(
&
This
->
base
.
data_format
);
IDirectInput_Release
((
LPDIRECTINPUTDEVICE8A
)
This
->
dinput
);
...
...
dlls/dinput/mouse.c
View file @
dbd2112e
...
...
@@ -273,8 +273,8 @@ static ULONG WINAPI SysMouseAImpl_Release(LPDIRECTINPUTDEVICE8A iface)
HeapFree
(
GetProcessHeap
(),
0
,
This
->
base
.
data_queue
);
/* Free data format */
HeapFree
(
GetProcessHeap
(),
0
,
(
LPVOID
)
This
->
base
.
data_format
.
wine_df
->
rgodf
);
HeapFree
(
GetProcessHeap
(),
0
,
(
LPVOID
)
This
->
base
.
data_format
.
wine_df
);
HeapFree
(
GetProcessHeap
(),
0
,
This
->
base
.
data_format
.
wine_df
->
rgodf
);
HeapFree
(
GetProcessHeap
(),
0
,
This
->
base
.
data_format
.
wine_df
);
release_DataFormat
(
&
This
->
base
.
data_format
);
IDirectInput_Release
((
LPDIRECTINPUTDEVICE8A
)
This
->
dinput
);
...
...
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