Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
1f67fa0a
Commit
1f67fa0a
authored
Oct 18, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 20, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add '\n's to Wine traces.
parent
f36fb236
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
joystick_linuxinput.c
dlls/dinput/joystick_linuxinput.c
+1
-1
tmarshal.c
dlls/oleaut32/tmarshal.c
+7
-7
No files found.
dlls/dinput/joystick_linuxinput.c
View file @
1f67fa0a
...
...
@@ -1770,7 +1770,7 @@ static HRESULT WINAPI JoystickAImpl_EnumCreatedEffectObjects(
return
DIERR_INVALIDPARAM
;
if
(
dwFlags
!=
0
)
FIXME
(
"Flags specified, but no flags exist yet (DX9)!"
);
FIXME
(
"Flags specified, but no flags exist yet (DX9)!
\n
"
);
while
(
itr
)
{
(
*
lpCallback
)(
itr
->
ref
,
pvRef
);
...
...
dlls/oleaut32/tmarshal.c
View file @
1f67fa0a
...
...
@@ -539,7 +539,7 @@ serialize_param(
case
VT_UI8
:
case
VT_CY
:
hres
=
S_OK
;
if
(
debugout
)
TRACE_
(
olerelay
)(
"%x%x"
,
arg
[
0
],
arg
[
1
]);
if
(
debugout
)
TRACE_
(
olerelay
)(
"%x%x
\n
"
,
arg
[
0
],
arg
[
1
]);
if
(
writeit
)
hres
=
xbuf_add
(
buf
,(
LPBYTE
)
arg
,
8
);
return
hres
;
...
...
@@ -551,27 +551,27 @@ serialize_param(
case
VT_R4
:
case
VT_UI4
:
hres
=
S_OK
;
if
(
debugout
)
TRACE_
(
olerelay
)(
"%x"
,
*
arg
);
if
(
debugout
)
TRACE_
(
olerelay
)(
"%x
\n
"
,
*
arg
);
if
(
writeit
)
hres
=
xbuf_add
(
buf
,(
LPBYTE
)
arg
,
sizeof
(
DWORD
));
return
hres
;
case
VT_I2
:
case
VT_UI2
:
hres
=
S_OK
;
if
(
debugout
)
TRACE_
(
olerelay
)(
"%04x"
,
*
arg
&
0xffff
);
if
(
debugout
)
TRACE_
(
olerelay
)(
"%04x
\n
"
,
*
arg
&
0xffff
);
if
(
writeit
)
hres
=
xbuf_add
(
buf
,(
LPBYTE
)
arg
,
sizeof
(
DWORD
));
return
hres
;
case
VT_I1
:
case
VT_UI1
:
hres
=
S_OK
;
if
(
debugout
)
TRACE_
(
olerelay
)(
"%02x"
,
*
arg
&
0xff
);
if
(
debugout
)
TRACE_
(
olerelay
)(
"%02x
\n
"
,
*
arg
&
0xff
);
if
(
writeit
)
hres
=
xbuf_add
(
buf
,(
LPBYTE
)
arg
,
sizeof
(
DWORD
));
return
hres
;
case
VT_I4
|
VT_BYREF
:
hres
=
S_OK
;
if
(
debugout
)
TRACE_
(
olerelay
)(
"&0x%x"
,
*
arg
);
if
(
debugout
)
TRACE_
(
olerelay
)(
"&0x%x
\n
"
,
*
arg
);
if
(
writeit
)
hres
=
xbuf_add
(
buf
,(
LPBYTE
)(
DWORD
*
)
*
arg
,
sizeof
(
DWORD
));
/* do not dealloc at this time */
...
...
@@ -841,10 +841,10 @@ deserialize_param(
while
(
1
)
{
switch
(
tdesc
->
vt
)
{
case
VT_EMPTY
:
if
(
debugout
)
TRACE_
(
olerelay
)(
"<empty>"
);
if
(
debugout
)
TRACE_
(
olerelay
)(
"<empty>
\n
"
);
return
S_OK
;
case
VT_NULL
:
if
(
debugout
)
TRACE_
(
olerelay
)(
"<null>"
);
if
(
debugout
)
TRACE_
(
olerelay
)(
"<null>
\n
"
);
return
S_OK
;
case
VT_VARIANT
:
{
VARIANT
*
vt
=
(
VARIANT
*
)
arg
;
...
...
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