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
1410cdd0
Commit
1410cdd0
authored
Oct 26, 1998
by
NF Stevens
Committed by
Alexandre Julliard
Oct 26, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A couple of TRACE messages are missing a newline at the end.
parent
724f1900
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
treeview.c
dlls/comctl32/treeview.c
+1
-1
int10.c
msdos/int10.c
+2
-2
mmsystem.c
multimedia/mmsystem.c
+1
-1
keyboard.c
windows/keyboard.c
+2
-2
mdi.c
windows/mdi.c
+1
-1
No files found.
dlls/comctl32/treeview.c
View file @
1410cdd0
...
...
@@ -1470,7 +1470,7 @@ TREEVIEW_KeyDown (WND *wndPtr, WPARAM32 wParam, LPARAM lParam)
int
prevSelect
;
TRACE
(
treeview
,
"%x %lx"
,
wParam
,
lParam
);
TRACE
(
treeview
,
"%x %lx
\n
"
,
wParam
,
lParam
);
prevSelect
=
infoPtr
->
selectedItem
;
if
(
!
prevSelect
)
return
FALSE
;
...
...
msdos/int10.c
View file @
1410cdd0
...
...
@@ -250,7 +250,7 @@ void WINAPI INT_Int10Handler( CONTEXT *context )
case
0x12
:
/* ALTERNATE FUNCTION SELECT */
switch
BL_reg
(
context
)
{
case
0x10
:
/* GET EGA INFO */
TRACE
(
int10
,
"EGA Info Requested"
);
TRACE
(
int10
,
"EGA Info Requested
\n
"
);
BX_reg
(
context
)
=
0x0003
;
CX_reg
(
context
)
=
0x0009
;
break
;
...
...
@@ -290,7 +290,7 @@ void WINAPI INT_Int10Handler( CONTEXT *context )
case
0x1a
:
switch
AL_reg
(
context
)
{
case
0x00
:
/* GET DISPLAY COMBINATION CODE */
TRACE
(
int10
,
"Get Display Combination Code"
);
TRACE
(
int10
,
"Get Display Combination Code
\n
"
);
/* Why are we saying this? */
/* Do we need to check if we are in a windows or text app? */
BX_reg
(
context
)
=
0x0008
;
/* VGA w/ color analog display */
...
...
multimedia/mmsystem.c
View file @
1410cdd0
...
...
@@ -1553,7 +1553,7 @@ static DWORD mciSysInfo16(DWORD dwFlags, LPMCI_SYSINFO_PARMS16 lpParms)
strcpy
(
lpstrReturn
,
lpmciInstallNames
);
return
0
;
case
MCI_SYSINFO_NAME
:
TRACE
(
mci
,
"MCI_SYSINFO_NAME"
);
TRACE
(
mci
,
"MCI_SYSINFO_NAME
\n
"
);
if
(
lpParms
->
dwNumber
>
mciInstalledCount
)
return
MMSYSERR_INVALPARAM
;
{
...
...
windows/keyboard.c
View file @
1410cdd0
...
...
@@ -891,7 +891,7 @@ INT32 WINAPI TranslateAccelerator32(HWND32 hWnd, HACCEL32 hAccel, LPMSG32 msg)
lpAccelTbl
[
i
].
key
,
lpAccelTbl
[
i
].
cmd
))
return
1
;
}
while
((
lpAccelTbl
[
i
++
].
fVirt
&
0x80
)
==
0
);
WARN
(
accel
,
"couldn't translate accelerator key"
);
WARN
(
accel
,
"couldn't translate accelerator key
\n
"
);
return
0
;
}
...
...
@@ -927,7 +927,7 @@ msg->hwnd=%04x, msg->message=%04x\n", hAccel,hWnd,msg->hwnd,msg->message);
lpAccelTbl
[
i
].
key
,
lpAccelTbl
[
i
].
cmd
))
return
1
;
}
while
((
lpAccelTbl
[
i
++
].
fVirt
&
0x80
)
==
0
);
WARN
(
accel
,
"couldn't translate accelerator key"
);
WARN
(
accel
,
"couldn't translate accelerator key
\n
"
);
return
0
;
}
...
...
windows/mdi.c
View file @
1410cdd0
...
...
@@ -259,7 +259,7 @@ static LRESULT MDIRefreshMenu( HWND32 hwnd, HMENU32 hmenuFrame,
TRACE
(
mdi
,
"%04x %04x %04x
\n
"
,
hwnd
,
hmenuFrame
,
hmenuWindow
);
FIXME
(
mdi
,
"partially function stub"
);
FIXME
(
mdi
,
"partially function stub
\n
"
);
return
oldFrameMenu
;
}
...
...
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