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
add85f46
Commit
add85f46
authored
Feb 12, 2014
by
Andrey Gusev
Committed by
Alexandre Julliard
Feb 12, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted typos fixes.
parent
2728e7b8
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
joystick.c
dlls/dinput/tests/joystick.c
+2
-2
dinput8_main.c
dlls/dinput8/dinput8_main.c
+1
-1
device.c
dlls/dinput8/tests/device.c
+2
-2
synth.c
dlls/dmsynth/synth.c
+1
-1
port.c
dlls/dmusic/port.c
+1
-1
dplaysp.c
dlls/dplayx/dplaysp.c
+1
-1
version.rc
dlls/dpnaddr/version.rc
+1
-1
No files found.
dlls/dinput/tests/joystick.c
View file @
add85f46
...
@@ -550,7 +550,7 @@ static BOOL CALLBACK EnumJoysticks(const DIDEVICEINSTANCEA *lpddi, void *pvRef)
...
@@ -550,7 +550,7 @@ static BOOL CALLBACK EnumJoysticks(const DIDEVICEINSTANCEA *lpddi, void *pvRef)
ok
(
hr
==
DI_OK
,
"IDirectInputDevice_SetProperty() failed: %08x
\n
"
,
hr
);
ok
(
hr
==
DI_OK
,
"IDirectInputDevice_SetProperty() failed: %08x
\n
"
,
hr
);
hr
=
IDirectInputDevice_GetProperty
(
pJoystick
,
DIPROP_FFGAIN
,
&
dip_gain_get
.
diph
);
hr
=
IDirectInputDevice_GetProperty
(
pJoystick
,
DIPROP_FFGAIN
,
&
dip_gain_get
.
diph
);
ok
(
hr
==
DI_OK
,
"IDirectInputDevice_GetProperty() failed: %08x
\n
"
,
hr
);
ok
(
hr
==
DI_OK
,
"IDirectInputDevice_GetProperty() failed: %08x
\n
"
,
hr
);
ok
(
dip_gain_get
.
dwData
==
dip_gain_set
.
dwData
,
"Gain not udated: %i
\n
"
,
dip_gain_get
.
dwData
);
ok
(
dip_gain_get
.
dwData
==
dip_gain_set
.
dwData
,
"Gain not u
p
dated: %i
\n
"
,
dip_gain_get
.
dwData
);
hr
=
IDirectInputDevice_Acquire
(
pJoystick
);
hr
=
IDirectInputDevice_Acquire
(
pJoystick
);
ok
(
hr
==
DI_OK
,
"IDirectInputDevice_Acquire() failed: %08x
\n
"
,
hr
);
ok
(
hr
==
DI_OK
,
"IDirectInputDevice_Acquire() failed: %08x
\n
"
,
hr
);
dip_gain_set
.
dwData
=
2
;
dip_gain_set
.
dwData
=
2
;
...
@@ -558,7 +558,7 @@ static BOOL CALLBACK EnumJoysticks(const DIDEVICEINSTANCEA *lpddi, void *pvRef)
...
@@ -558,7 +558,7 @@ static BOOL CALLBACK EnumJoysticks(const DIDEVICEINSTANCEA *lpddi, void *pvRef)
ok
(
hr
==
DI_OK
,
"IDirectInputDevice_SetProperty() failed: %08x
\n
"
,
hr
);
ok
(
hr
==
DI_OK
,
"IDirectInputDevice_SetProperty() failed: %08x
\n
"
,
hr
);
hr
=
IDirectInputDevice_GetProperty
(
pJoystick
,
DIPROP_FFGAIN
,
&
dip_gain_get
.
diph
);
hr
=
IDirectInputDevice_GetProperty
(
pJoystick
,
DIPROP_FFGAIN
,
&
dip_gain_get
.
diph
);
ok
(
hr
==
DI_OK
,
"IDirectInputDevice_GetProperty() failed: %08x
\n
"
,
hr
);
ok
(
hr
==
DI_OK
,
"IDirectInputDevice_GetProperty() failed: %08x
\n
"
,
hr
);
ok
(
dip_gain_get
.
dwData
==
dip_gain_set
.
dwData
,
"Gain not udated: %i
\n
"
,
dip_gain_get
.
dwData
);
ok
(
dip_gain_get
.
dwData
==
dip_gain_set
.
dwData
,
"Gain not u
p
dated: %i
\n
"
,
dip_gain_get
.
dwData
);
/* Test range and internal clamping. */
/* Test range and internal clamping. */
dip_gain_set
.
dwData
=
-
1
;
dip_gain_set
.
dwData
=
-
1
;
hr
=
IDirectInputDevice_SetProperty
(
pJoystick
,
DIPROP_FFGAIN
,
&
dip_gain_set
.
diph
);
hr
=
IDirectInputDevice_SetProperty
(
pJoystick
,
DIPROP_FFGAIN
,
&
dip_gain_set
.
diph
);
...
...
dlls/dinput8/dinput8_main.c
View file @
add85f46
...
@@ -58,7 +58,7 @@ HRESULT WINAPI DECLSPEC_HOTPATCH DirectInput8Create(HINSTANCE hinst, DWORD dwVer
...
@@ -58,7 +58,7 @@ HRESULT WINAPI DECLSPEC_HOTPATCH DirectInput8Create(HINSTANCE hinst, DWORD dwVer
IDirectInputA
*
pDI
;
IDirectInputA
*
pDI
;
HRESULT
hr
,
hrCo
;
HRESULT
hr
,
hrCo
;
TRACE
(
"hInst (%p), dwVersion: %d, riid (%s), punkOuter (%p)
)
\n
"
,
hinst
,
dwVersion
,
debugstr_guid
(
riid
),
punkOuter
);
TRACE
(
"hInst (%p), dwVersion: %d, riid (%s), punkOuter (%p)
\n
"
,
hinst
,
dwVersion
,
debugstr_guid
(
riid
),
punkOuter
);
if
(
!
ppDI
)
if
(
!
ppDI
)
return
E_POINTER
;
return
E_POINTER
;
...
...
dlls/dinput8/tests/device.c
View file @
add85f46
...
@@ -401,7 +401,7 @@ static void test_save_settings(void)
...
@@ -401,7 +401,7 @@ static void test_save_settings(void)
if
(
hr
==
DI_SETTINGSNOTSAVED
)
if
(
hr
==
DI_SETTINGSNOTSAVED
)
{
{
skip
(
"Cant test saving settings if SetActionMap returns DI_SETTINGSNOTSAVED
\n
"
);
skip
(
"Can
'
t test saving settings if SetActionMap returns DI_SETTINGSNOTSAVED
\n
"
);
return
;
return
;
}
}
...
@@ -455,7 +455,7 @@ static void test_save_settings(void)
...
@@ -455,7 +455,7 @@ static void test_save_settings(void)
if
(
hr
==
DI_SETTINGSNOTSAVED
)
if
(
hr
==
DI_SETTINGSNOTSAVED
)
{
{
skip
(
"Cant test saving settings if SetActionMap returns DI_SETTINGSNOTSAVED
\n
"
);
skip
(
"Can
'
t test saving settings if SetActionMap returns DI_SETTINGSNOTSAVED
\n
"
);
return
;
return
;
}
}
...
...
dlls/dmsynth/synth.c
View file @
add85f46
...
@@ -118,7 +118,7 @@ static HRESULT WINAPI IDirectMusicSynth8Impl_SetNumChannelGroups(LPDIRECTMUSICSY
...
@@ -118,7 +118,7 @@ static HRESULT WINAPI IDirectMusicSynth8Impl_SetNumChannelGroups(LPDIRECTMUSICSY
{
{
IDirectMusicSynth8Impl
*
This
=
impl_from_IDirectMusicSynth8
(
iface
);
IDirectMusicSynth8Impl
*
This
=
impl_from_IDirectMusicSynth8
(
iface
);
FIXME
(
"(%p->(%d): stub
\n
"
,
This
,
groups
);
FIXME
(
"(%p
)
->(%d): stub
\n
"
,
This
,
groups
);
return
S_OK
;
return
S_OK
;
}
}
...
...
dlls/dmusic/port.c
View file @
add85f46
...
@@ -686,7 +686,7 @@ HRESULT DMUSIC_CreateSynthPortImpl(LPCGUID guid, LPVOID *object, LPUNKNOWN unkou
...
@@ -686,7 +686,7 @@ HRESULT DMUSIC_CreateSynthPortImpl(LPCGUID guid, LPVOID *object, LPUNKNOWN unkou
HRESULT
hr
=
E_FAIL
;
HRESULT
hr
=
E_FAIL
;
int
i
;
int
i
;
TRACE
(
"(%p,%p,%p,%p,%p%d)
\n
"
,
guid
,
object
,
unkouter
,
port_params
,
port_caps
,
device
);
TRACE
(
"(%p,%p,%p,%p,%p
,
%d)
\n
"
,
guid
,
object
,
unkouter
,
port_params
,
port_caps
,
device
);
*
object
=
NULL
;
*
object
=
NULL
;
...
...
dlls/dplayx/dplaysp.c
View file @
add85f46
...
@@ -151,7 +151,7 @@ static HRESULT WINAPI IDirectPlaySPImpl_EnumMRUEntries( IDirectPlaySP *iface, LP
...
@@ -151,7 +151,7 @@ static HRESULT WINAPI IDirectPlaySPImpl_EnumMRUEntries( IDirectPlaySP *iface, LP
/* Should be able to call the comctl32 undocumented MRU routines.
/* Should be able to call the comctl32 undocumented MRU routines.
I suspect that the interface works appropriately */
I suspect that the interface works appropriately */
FIXME
(
"(%p)->(%p,%p,%p,%p
,
): stub
\n
"
,
FIXME
(
"(%p)->(%p,%p,%p,%p): stub
\n
"
,
This
,
lpSection
,
lpKey
,
lpEnumMRUCallback
,
lpContext
);
This
,
lpSection
,
lpKey
,
lpEnumMRUCallback
,
lpContext
);
return
DP_OK
;
return
DP_OK
;
...
...
dlls/dpnaddr/version.rc
View file @
add85f46
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
*/
*/
#define WINE_FILEDESCRIPTION_STR "Wine DpnAddr dll"
#define WINE_FILEDESCRIPTION_STR "Wine DpnAddr dll"
#define WINE_FILENAME_STR "dpnadr.dll"
#define WINE_FILENAME_STR "dpnad
d
r.dll"
#define WINE_FILEVERSION 5,3,2600,2180
#define WINE_FILEVERSION 5,3,2600,2180
#define WINE_FILEVERSION_STR "5.3.2600.2180"
#define WINE_FILEVERSION_STR "5.3.2600.2180"
#define WINE_PRODUCTVERSION 5,3,2600,2180
#define WINE_PRODUCTVERSION 5,3,2600,2180
...
...
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