Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
32886f6b
Commit
32886f6b
authored
May 24, 2002
by
James Juran
Committed by
Alexandre Julliard
May 24, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing \n to output messages.
parent
236893c6
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
24 additions
and
24 deletions
+24
-24
crypt.c
dlls/advapi32/crypt.c
+2
-2
commctrl.c
dlls/comctl32/commctrl.c
+1
-1
main.c
dlls/dinput/keyboard/main.c
+2
-2
freetype.c
dlls/gdi/freetype.c
+1
-1
imm.c
dlls/imm32/imm.c
+3
-3
cdrom.c
dlls/ntdll/cdrom.c
+1
-1
reg.c
dlls/shlwapi/reg.c
+2
-2
dosvm.c
dlls/winedos/dosvm.c
+2
-2
graphics.c
graphics/x11drv/graphics.c
+1
-1
xfont.c
graphics/x11drv/xfont.c
+4
-4
ppdev.c
msdos/ppdev.c
+1
-1
region.c
objects/region.c
+3
-3
sysparams.c
windows/sysparams.c
+1
-1
No files found.
dlls/advapi32/crypt.c
View file @
32886f6b
...
...
@@ -1051,7 +1051,7 @@ BOOL WINAPI CryptSignHashA (HCRYPTHASH hHash, DWORD dwKeySpec, LPCSTR sDescripti
TRACE
(
"(0x%lx, %ld, %08ld, %p, %p)
\n
"
,
hHash
,
dwKeySpec
,
dwFlags
,
pbSignature
,
pdwSigLen
);
if
(
sDescription
)
WARN
(
"The sDescription parameter is not supported (and no longer used). Ignoring."
);
WARN
(
"The sDescription parameter is not supported (and no longer used). Ignoring.
\n
"
);
if
(
!
hash
)
CRYPT_ReturnLastError
(
ERROR_INVALID_HANDLE
);
...
...
@@ -1233,7 +1233,7 @@ BOOL WINAPI CryptVerifySignatureA (HCRYPTHASH hHash, BYTE *pbSignature, DWORD dw
TRACE
(
"(0x%lx, %p, %ld, 0x%lx, %08ld)
\n
"
,
hHash
,
pbSignature
,
dwSigLen
,
hPubKey
,
dwFlags
);
if
(
sDescription
)
WARN
(
"The sDescription parameter is not supported (and no longer used). Ignoring."
);
WARN
(
"The sDescription parameter is not supported (and no longer used). Ignoring.
\n
"
);
if
(
!
hash
||
!
key
)
CRYPT_ReturnLastError
(
ERROR_INVALID_HANDLE
);
...
...
dlls/comctl32/commctrl.c
View file @
32886f6b
...
...
@@ -438,7 +438,7 @@ void WINAPI DrawStatusTextW (HDC hdc, LPRECT lprc, LPCWSTR text, UINT style)
}
r
.
left
+=
3
;
if
(
style
&
SBT_RTLREADING
)
FIXME
(
"U
supported RTL style!
"
);
FIXME
(
"U
nsupported RTL style!
\n
"
);
DrawTextW
(
hdc
,
text
,
-
1
,
&
r
,
align
|
DT_VCENTER
|
DT_SINGLELINE
);
SetBkMode
(
hdc
,
oldbkmode
);
}
...
...
dlls/dinput/keyboard/main.c
View file @
32886f6b
...
...
@@ -304,7 +304,7 @@ static HRESULT WINAPI SysKeyboardAImpl_Acquire(LPDIRECTINPUTDEVICE2A iface)
if
(
current
!=
NULL
)
{
FIXME
(
"Not more than one keyboard can be acquired at the same time."
);
FIXME
(
"Not more than one keyboard can be acquired at the same time.
\n
"
);
SysKeyboardAImpl_Unacquire
(
iface
);
}
...
...
@@ -336,7 +336,7 @@ static HRESULT WINAPI SysKeyboardAImpl_Unacquire(LPDIRECTINPUTDEVICE2A iface)
if
(
current
==
This
)
current
=
NULL
;
else
ERR
(
"this != current"
);
ERR
(
"this != current
\n
"
);
This
->
acquired
=
0
;
...
...
dlls/gdi/freetype.c
View file @
32886f6b
...
...
@@ -710,7 +710,7 @@ static LONG load_VDMX(GdiFont font, LONG height)
}
if
(
offset
<
0
)
{
FIXME
(
"No suitable ratio found"
);
FIXME
(
"No suitable ratio found
\n
"
);
return
ppem
;
}
...
...
dlls/imm32/imm.c
View file @
32886f6b
...
...
@@ -246,7 +246,7 @@ LONG WINAPI ImmGetCompositionStringA(
case
VER_PLATFORM_WIN32_WINDOWS
:
return
-
1
;
case
VER_PLATFORM_WIN32_NT
:
return
0
;
default:
FIXME
(
"%ld not supported"
,
version
.
dwPlatformId
);
FIXME
(
"%ld not supported
\n
"
,
version
.
dwPlatformId
);
return
-
1
;
}
}
...
...
@@ -269,7 +269,7 @@ LONG WINAPI ImmGetCompositionStringW(
case
VER_PLATFORM_WIN32_WINDOWS
:
return
-
1
;
case
VER_PLATFORM_WIN32_NT
:
return
0
;
default:
FIXME
(
"%ld not supported"
,
version
.
dwPlatformId
);
FIXME
(
"%ld not supported
\n
"
,
version
.
dwPlatformId
);
return
-
1
;
}
}
...
...
@@ -491,7 +491,7 @@ UINT WINAPI ImmGetVirtualKey(HWND hWnd)
case
VER_PLATFORM_WIN32_NT
:
return
0
;
default:
FIXME
(
"%ld not supported"
,
version
.
dwPlatformId
);
FIXME
(
"%ld not supported
\n
"
,
version
.
dwPlatformId
);
return
VK_PROCESSKEY
;
}
}
...
...
dlls/ntdll/cdrom.c
View file @
32886f6b
...
...
@@ -629,7 +629,7 @@ static DWORD CDROM_ReadQChannel(int dev, const CDROM_SUB_Q_DATA_FORMAT* fmt,
break
;
case
IOCTL_CDROM_TRACK_ISRC
:
size
=
sizeof
(
SUB_Q_CURRENT_POSITION
);
FIXME
(
"TrackIsrc: NIY on linux"
);
FIXME
(
"TrackIsrc: NIY on linux
\n
"
);
data
->
TrackIsrc
.
FormatCode
=
IOCTL_CDROM_TRACK_ISRC
;
data
->
TrackIsrc
.
Tcval
=
0
;
io
=
0
;
...
...
dlls/shlwapi/reg.c
View file @
32886f6b
...
...
@@ -1596,7 +1596,7 @@ BOOL WINAPI SHLWAPI_320(LPCSTR lpszSubKey, LPCSTR lpszValue)
if
(
!
lpszValue
)
{
WARN
(
"Invalid lpszValue would crash under Win32!"
);
WARN
(
"Invalid lpszValue would crash under Win32!
\n
"
);
return
FALSE
;
}
...
...
@@ -1616,7 +1616,7 @@ BOOL WINAPI SHLWAPI_321(LPCWSTR lpszSubKey, LPCWSTR lpszValue)
if
(
!
lpszValue
)
{
WARN
(
"Invalid lpszValue would crash under Win32!"
);
WARN
(
"Invalid lpszValue would crash under Win32!
\n
"
);
return
FALSE
;
}
...
...
dlls/winedos/dosvm.c
View file @
32886f6b
...
...
@@ -226,7 +226,7 @@ void WINAPI DOSVM_QueueEvent( INT irq, INT priority, DOSRELAY relay, LPVOID data
memset
(
&
context
,
0
,
sizeof
(
context
));
(
*
relay
)(
&
context
,
data
);
}
else
{
ERR
(
"IRQ without DOS task: should not happen"
);
ERR
(
"IRQ without DOS task: should not happen
\n
"
);
}
}
}
...
...
@@ -613,7 +613,7 @@ void WINAPI DOSVM_QueueEvent( INT irq, INT priority, DOSRELAY relay, LPVOID data
memset
(
&
context
,
0
,
sizeof
(
context
));
(
*
relay
)(
&
context
,
data
);
}
else
{
ERR
(
"IRQ without DOS task: should not happen"
);
ERR
(
"IRQ without DOS task: should not happen
\n
"
);
}
}
...
...
graphics/x11drv/graphics.c
View file @
32886f6b
...
...
@@ -1316,7 +1316,7 @@ BOOL X11DRV_GetDCOrgEx( X11DRV_PDEVICE *physDev, LPPOINT lpp )
Window
root
;
int
x
,
y
,
w
,
h
,
border
,
depth
;
FIXME
(
"this is not correct for managed windows"
);
FIXME
(
"this is not correct for managed windows
\n
"
);
TSXGetGeometry
(
gdi_display
,
physDev
->
drawable
,
&
root
,
&
x
,
&
y
,
&
w
,
&
h
,
&
border
,
&
depth
);
lpp
->
x
=
x
;
...
...
graphics/x11drv/xfont.c
View file @
32886f6b
...
...
@@ -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"
);
WARN
(
ridiculous
,
fullname
,
"pixel_size
\n
"
);
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"
);
WARN
(
ridiculous
,
fullname
,
"point_size
\n
"
);
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"
);
WARN
(
ridiculous
,
fullname
,
"resolution_x
\n
"
);
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"
);
WARN
(
ridiculous
,
fullname
,
"resolution_y
\n
"
);
return
FALSE
;
}
if
(
!
(
atoi
(
lfd
->
resolution_y
))
)
...
...
msdos/ppdev.c
View file @
32886f6b
...
...
@@ -126,7 +126,7 @@ char IO_pp_init(void)
{
WARN
(
"Configuration: %s uses the same virtual ports as %s
\n
"
,
buffer
,
PPDeviceList
[
0
].
devicename
);
WARN
(
"Configuration: Rejecting configuration item"
);
WARN
(
"Configuration: Rejecting configuration item
\n
"
);
userbase
=
0
;
break
;
}
...
...
objects/region.c
View file @
32886f6b
...
...
@@ -920,14 +920,14 @@ HRGN WINAPI ExtCreateRegion( const XFORM* lpXform, DWORD dwCount, const RGNDATA*
TRACE
(
" %p %ld %p = "
,
lpXform
,
dwCount
,
rgndata
);
if
(
lpXform
)
WARN
(
"(Xform not implemented - ignored)
"
);
WARN
(
"(Xform not implemented - ignored)
\n
"
);
if
(
rgndata
->
rdh
.
iType
!=
RDH_RECTANGLES
)
{
/* FIXME: We can use CreatePolyPolygonRgn() here
* for trapezoidal data */
WARN
(
"(Unsupported region data)
"
);
WARN
(
"(Unsupported region data)
\n
"
);
goto
fail
;
}
...
...
@@ -945,7 +945,7 @@ HRGN WINAPI ExtCreateRegion( const XFORM* lpXform, DWORD dwCount, const RGNDATA*
TRACE
(
"%04x
\n
"
,
hrgn
);
return
hrgn
;
}
else
ERR
(
"Could not get pointer to newborn Region!"
);
else
ERR
(
"Could not get pointer to newborn Region!
\n
"
);
}
fail:
WARN
(
"Failed
\n
"
);
...
...
windows/sysparams.c
View file @
32886f6b
...
...
@@ -336,7 +336,7 @@ static HKEY get_volatile_regkey(void)
if
(
RegCreateKeyExA
(
HKEY_CURRENT_USER
,
WINE_CURRENT_USER_REGKEY
,
0
,
0
,
REG_OPTION_VOLATILE
,
KEY_ALL_ACCESS
,
0
,
&
volatile_key
,
0
)
!=
ERROR_SUCCESS
)
ERR
(
"Can't create wine configuration registry branch"
);
ERR
(
"Can't create wine configuration registry branch
\n
"
);
}
return
volatile_key
;
}
...
...
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