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
e62cbca0
Commit
e62cbca0
authored
Nov 26, 1998
by
Ulrich Weigand
Committed by
Alexandre Julliard
Nov 26, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed some unnecessary FIXME outputs.
parent
b9eab15d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
thunk.c
if1632/thunk.c
+1
-1
dc.c
objects/dc.c
+5
-4
No files found.
if1632/thunk.c
View file @
e62cbca0
...
...
@@ -1454,6 +1454,6 @@ void WINAPI CBClientThunkSL( CONTEXT *context )
void
WINAPI
KERNEL_365
(
CONTEXT
*
context
)
{
LPWORD
args
=
PTR_SEG_OFF_TO_LIN
(
SS_reg
(
context
),
SP_reg
(
context
)
);
FIXM
E
(
thunk
,
"(%04X, %d): stub!
\n
"
,
args
[
3
],
(
INT16
)
args
[
2
]
);
TRAC
E
(
thunk
,
"(%04X, %d): stub!
\n
"
,
args
[
3
],
(
INT16
)
args
[
2
]
);
}
objects/dc.c
View file @
e62cbca0
...
...
@@ -1236,8 +1236,7 @@ HCOLORSPACE32 WINAPI GetColorSpace(HDC32 hdc)
*/
UINT16
WINAPI
GetBoundsRect16
(
HDC16
hdc
,
LPRECT16
rect
,
UINT16
flags
)
{
FIXME
(
dc
,
"(): stub
\n
"
);
return
DCB_RESET
;
/* bounding rectangle always empty */
return
DCB_RESET
|
DCB_DISABLE
;
/* bounding rectangle always empty and disabled*/
}
/***********************************************************************
...
...
@@ -1245,7 +1244,9 @@ UINT16 WINAPI GetBoundsRect16(HDC16 hdc, LPRECT16 rect, UINT16 flags)
*/
UINT16
WINAPI
SetBoundsRect16
(
HDC16
hdc
,
const
RECT16
*
rect
,
UINT16
flags
)
{
FIXME
(
dc
,
"(): stub
\n
"
);
return
DCB_DISABLE
;
/* bounding rectangle always empty */
if
(
(
flags
&
DCB_ACCUMULATE
)
||
(
flags
&
DCB_ENABLE
)
)
FIXME
(
dc
,
"(%04x, %p, %04x): stub
\n
"
,
hdc
,
rect
,
flags
);
return
DCB_RESET
|
DCB_DISABLE
;
/* bounding rectangle always empty and disabled*/
}
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