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
6a5ba8fb
Commit
6a5ba8fb
authored
May 29, 2002
by
Vincent Béron
Committed by
Alexandre Julliard
May 29, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some more missing \n in traces.
parent
bbee7ec7
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
14 deletions
+14
-14
d3dexecutebuffer.c
dlls/ddraw/d3dexecutebuffer.c
+1
-1
dib.c
dlls/ddraw/dsurface/dib.c
+1
-1
variant.c
dlls/oleaut32/variant.c
+1
-1
reg.c
dlls/shlwapi/reg.c
+5
-5
xfont.c
graphics/x11drv/xfont.c
+4
-4
README
tools/winedump/README
+2
-2
No files found.
dlls/ddraw/d3dexecutebuffer.c
View file @
6a5ba8fb
...
...
@@ -517,7 +517,7 @@ static void execute(LPDIRECT3DEXECUTEBUFFER lpBuff,
/* This is where doing Direct3D on top on OpenGL is quite difficult.
This method transforms a set of vertices using the CURRENT state
(lighting, projection, ...) but does not rasterize them.
They will o
i
nly be put on screen later (with the POINT / LINE and
They will only be put on screen later (with the POINT / LINE and
TRIANGLE op-codes). The problem is that you can have a triangle
with each point having been transformed using another state...
...
...
dlls/ddraw/dsurface/dib.c
View file @
6a5ba8fb
...
...
@@ -615,7 +615,7 @@ DIB_DirectDrawSurface_BltFast(LPDIRECTDRAWSURFACE7 iface, DWORD dstx,
FIXME
(
"(%p)->(%ld,%ld,%p,%p,%08lx)
\n
"
,
This
,
dstx
,
dsty
,
src
,
rsrc
,
trans
);
FIXME
(
"
trans:"
);
FIXME
(
"
\t
trans:"
);
if
(
FIXME_ON
(
ddraw
))
DDRAW_dump_DDBLTFAST
(
trans
);
if
(
rsrc
)
...
...
dlls/oleaut32/variant.c
View file @
6a5ba8fb
...
...
@@ -4464,7 +4464,7 @@ HRESULT WINAPI VariantTimeToSystemTime( double vtime, LPSYSTEMTIME lpSystemTime
struct
tm
r
;
TRACE
(
" Variant = %f SYSTEMTIME ptr %p"
,
vtime
,
lpSystemTime
);
TRACE
(
" Variant = %f SYSTEMTIME ptr %p
\n
"
,
vtime
,
lpSystemTime
);
if
(
vtime
>=
0
)
{
...
...
dlls/shlwapi/reg.c
View file @
6a5ba8fb
...
...
@@ -771,7 +771,7 @@ DWORD WINAPI SHRegSetPathA(HKEY hKey, LPCSTR lpszSubKey, LPCSTR lpszValue,
{
char
szBuff
[
MAX_PATH
];
FIXME
(
"(hkey=0x%08x,%s,%s,%p,%ld) - semi-stub"
,
hKey
,
debugstr_a
(
lpszSubKey
),
FIXME
(
"(hkey=0x%08x,%s,%s,%p,%ld) - semi-stub
\n
"
,
hKey
,
debugstr_a
(
lpszSubKey
),
debugstr_a
(
lpszValue
),
lpszPath
,
dwFlags
);
lstrcpyA
(
szBuff
,
lpszPath
);
...
...
@@ -792,7 +792,7 @@ DWORD WINAPI SHRegSetPathW(HKEY hKey, LPCWSTR lpszSubKey, LPCWSTR lpszValue,
{
WCHAR
szBuff
[
MAX_PATH
];
FIXME
(
"(hkey=0x%08x,%s,%s,%p,%ld) - semi-stub"
,
hKey
,
debugstr_w
(
lpszSubKey
),
FIXME
(
"(hkey=0x%08x,%s,%s,%p,%ld) - semi-stub
\n
"
,
hKey
,
debugstr_w
(
lpszSubKey
),
debugstr_w
(
lpszValue
),
lpszPath
,
dwFlags
);
lstrcpyW
(
szBuff
,
lpszPath
);
...
...
@@ -999,7 +999,7 @@ LONG WINAPI SHQueryInfoKeyW(HKEY hKey, LPDWORD pwSubKeys, LPDWORD pwSubKeyMax,
if (!pcbData && pData != pvData)
{
WARN("Invalid pcbData would crash under Win32!");
WARN("Invalid pcbData would crash under Win32!
\n
");
return ERROR_OUTOFMEMORY;
}
...
...
@@ -1370,7 +1370,7 @@ DWORD WINAPI SHDeleteOrphanKeyA(HKEY hKey, LPCSTR lpszSubKey)
HKEY
hSubKey
;
DWORD
dwKeyCount
=
0
,
dwValueCount
=
0
,
dwRet
;
TRACE
(
"(hkey=0x%08x,%s)"
,
hKey
,
debugstr_a
(
lpszSubKey
));
TRACE
(
"(hkey=0x%08x,%s)
\n
"
,
hKey
,
debugstr_a
(
lpszSubKey
));
dwRet
=
RegOpenKeyExA
(
hKey
,
lpszSubKey
,
0
,
KEY_READ
,
&
hSubKey
);
...
...
@@ -1399,7 +1399,7 @@ DWORD WINAPI SHDeleteOrphanKeyW(HKEY hKey, LPCWSTR lpszSubKey)
HKEY
hSubKey
;
DWORD
dwKeyCount
=
0
,
dwValueCount
=
0
,
dwRet
;
TRACE
(
"(hkey=0x%08x,%s)"
,
hKey
,
debugstr_w
(
lpszSubKey
));
TRACE
(
"(hkey=0x%08x,%s)
\n
"
,
hKey
,
debugstr_w
(
lpszSubKey
));
dwRet
=
RegOpenKeyExW
(
hKey
,
lpszSubKey
,
0
,
KEY_READ
,
&
hSubKey
);
...
...
graphics/x11drv/xfont.c
View file @
6a5ba8fb
...
...
@@ -644,7 +644,7 @@ static int LFD_InitFontInfo( fontInfo* fi, const LFD* lfd, LPCSTR fullname )
j
=
strlen
(
lfd
->
pixel_size
);
if
(
j
==
0
||
j
>
3
)
{
WARN
(
ridiculous
,
fullname
,
"pixel_size
\n
"
);
WARN
(
ridiculous
,
fullname
,
"pixel_size"
);
return
FALSE
;
}
if
(
!
(
fi
->
lfd_height
=
atoi
(
lfd
->
pixel_size
))
)
...
...
@@ -653,7 +653,7 @@ static int LFD_InitFontInfo( fontInfo* fi, const LFD* lfd, LPCSTR fullname )
j
=
strlen
(
lfd
->
point_size
);
if
(
j
==
0
||
j
>
3
)
{
WARN
(
ridiculous
,
fullname
,
"point_size
\n
"
);
WARN
(
ridiculous
,
fullname
,
"point_size"
);
return
FALSE
;
}
if
(
!
(
atoi
(
lfd
->
point_size
))
)
...
...
@@ -662,7 +662,7 @@ static int LFD_InitFontInfo( fontInfo* fi, const LFD* lfd, LPCSTR fullname )
j
=
strlen
(
lfd
->
resolution_x
);
if
(
j
==
0
||
j
>
3
)
{
WARN
(
ridiculous
,
fullname
,
"resolution_x
\n
"
);
WARN
(
ridiculous
,
fullname
,
"resolution_x"
);
return
FALSE
;
}
if
(
!
(
fi
->
lfd_resolution
=
atoi
(
lfd
->
resolution_x
))
)
...
...
@@ -671,7 +671,7 @@ static int LFD_InitFontInfo( fontInfo* fi, const LFD* lfd, LPCSTR fullname )
j
=
strlen
(
lfd
->
resolution_y
);
if
(
j
==
0
||
j
>
3
)
{
WARN
(
ridiculous
,
fullname
,
"resolution_y
\n
"
);
WARN
(
ridiculous
,
fullname
,
"resolution_y"
);
return
FALSE
;
}
if
(
!
(
atoi
(
lfd
->
resolution_y
))
)
...
...
tools/winedump/README
View file @
6a5ba8fb
...
...
@@ -307,7 +307,7 @@ BOOL __stdcall ZIPEXTRA__OpenZipFile(LPCSTR pszFileName);
.c:
BOOL __stdcall ZIPEXTRA__OpenZipFile(LPCSTR pszFileName)
{
TRACE("stub");
TRACE("stub
\n
");
return 0;
}
...
...
@@ -379,7 +379,7 @@ BOOL __stdcall ZIPEXTRA__OpenZipFile(LPCSTR pszFileName)
{
BOOL (__stdcall *pFunc)(LPCSTR) = (void*)GetProcAddress(hDLL,"_OpenZipFile");
BOOL retVal;
TRACE("((LPCSTR)%s) stub", pszFileName);
TRACE("((LPCSTR)%s) stub
\n
", pszFileName);
retVal = pFunc(pszFileName);
TRACE("returned (%ld)\n",(LONG)retVal));
return retVal;
...
...
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